Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / clr / src / BCL / System / ObsoleteAttribute.cs / 1 / ObsoleteAttribute.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: ObsoleteAttribute ** ** ** Purpose: Attribute for functions, etc that will be removed. ** ** ===========================================================*/ namespace System { using System; using System.Runtime.Remoting; // This attribute is attached to members that are not to be used any longer. // Message is some human readable explanation of what to use // Error indicates if the compiler should treat usage of such a method as an // error. (this would be used if the actual implementation of the obsolete // method's implementation had changed). // [Serializable(), AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Interface | AttributeTargets.Constructor | AttributeTargets.Method| AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Delegate , Inherited = false)] [System.Runtime.InteropServices.ComVisible(true)] public sealed class ObsoleteAttribute : Attribute { private String _message; private bool _error; public ObsoleteAttribute () { _message = null; _error = false; } public ObsoleteAttribute (String message) { _message = message; _error = false; } public ObsoleteAttribute (String message, bool error) { _message = message; _error = error; } public String Message { get {return _message;} } public bool IsError{ get {return _error;} } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ToolStrip.cs
- AnnotationMap.cs
- ParseHttpDate.cs
- StandardBindingElement.cs
- GeometryCombineModeValidation.cs
- xdrvalidator.cs
- ControlCollection.cs
- CodeNamespaceImport.cs
- EntityUtil.cs
- CounterSampleCalculator.cs
- OLEDB_Util.cs
- ListMarkerSourceInfo.cs
- RulePatternOps.cs
- SelectedDatesCollection.cs
- FontFamilyIdentifier.cs
- EventOpcode.cs
- ServiceBuildProvider.cs
- AvTraceDetails.cs
- ProtocolImporter.cs
- ParameterBuilder.cs
- ServiceMetadataPublishingElement.cs
- CalendarTable.cs
- UserPreferenceChangingEventArgs.cs
- printdlgexmarshaler.cs
- MailWebEventProvider.cs
- CacheEntry.cs
- CompareValidator.cs
- LineServicesCallbacks.cs
- WebServiceData.cs
- _Events.cs
- SqlConnectionManager.cs
- TextServicesDisplayAttribute.cs
- ClockGroup.cs
- DataSourceXmlAttributeAttribute.cs
- ConnectionManagementElement.cs
- _ConnectionGroup.cs
- StrokeSerializer.cs
- FolderLevelBuildProviderAppliesToAttribute.cs
- SHA256.cs
- OleDbErrorCollection.cs
- GatewayDefinition.cs
- Slider.cs
- BitmapFrameDecode.cs
- RelationshipDetailsCollection.cs
- ToolStripProgressBar.cs
- ConfigXmlCDataSection.cs
- HostExecutionContextManager.cs
- DataGridViewTopLeftHeaderCell.cs
- IndependentAnimationStorage.cs
- SelectionItemProviderWrapper.cs
- XmlILConstructAnalyzer.cs
- XmlEntityReference.cs
- SByteConverter.cs
- SqlXmlStorage.cs
- MsmqDiagnostics.cs
- BreadCrumbTextConverter.cs
- WinEventWrap.cs
- Utils.cs
- ServiceModelConfigurationSectionCollection.cs
- ILGenerator.cs
- CachedPathData.cs
- _HeaderInfoTable.cs
- HttpVersion.cs
- ConstraintEnumerator.cs
- RoleGroupCollectionEditor.cs
- _DisconnectOverlappedAsyncResult.cs
- MsmqOutputMessage.cs
- ITreeGenerator.cs
- DataGridViewRowConverter.cs
- FamilyTypeface.cs
- AlphaSortedEnumConverter.cs
- ProcessManager.cs
- SqlGenerator.cs
- SimpleBitVector32.cs
- SourceItem.cs
- TaskHelper.cs
- SoapFault.cs
- PopupRootAutomationPeer.cs
- HttpRuntimeSection.cs
- TdsParserStateObject.cs
- ComAdminInterfaces.cs
- EndpointAddressMessageFilterTable.cs
- Point3DConverter.cs
- WaitForChangedResult.cs
- CodeLabeledStatement.cs
- ServiceDurableInstance.cs
- CharacterMetrics.cs
- ToolboxItemFilterAttribute.cs
- MarginsConverter.cs
- XpsPackagingException.cs
- BamlTreeNode.cs
- TreeViewAutomationPeer.cs
- _RequestLifetimeSetter.cs
- TransformCryptoHandle.cs
- NativeMethods.cs
- AppSecurityManager.cs
- StringWriter.cs
- DPAPIProtectedConfigurationProvider.cs
- SymbolTable.cs
- RandomDelayQueuedSendsAsyncResult.cs