Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / clr / src / BCL / System / ObjectDisposedException.cs / 1 / ObjectDisposedException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== namespace System { using System; using System.Runtime.Serialization; using System.Globalization; using System.Security.Permissions; ////// [System.Runtime.InteropServices.ComVisible(true)] [Serializable()]public class ObjectDisposedException : InvalidOperationException { private String objectName; // This constructor should only be called by the EE (COMPlusThrow) private ObjectDisposedException() : this(null ,Environment.GetResourceString("ObjectDisposed_Generic")) { } public ObjectDisposedException(String objectName) : this(objectName, Environment.GetResourceString("ObjectDisposed_Generic")) { } public ObjectDisposedException(String objectName, String message) : base(message) { SetErrorCode(__HResults.COR_E_OBJECTDISPOSED); this.objectName = objectName; } public ObjectDisposedException(String message, Exception innerException) : base(message, innerException) { SetErrorCode(__HResults.COR_E_OBJECTDISPOSED); } ///The exception that is thrown when accessing an object that was /// disposed. ////// public override String Message { get { String name = ObjectName; if (name == null || name.Length == 0) return base.Message; return base.Message + Environment.NewLine + String.Format(CultureInfo.CurrentCulture, Environment.GetResourceString("ObjectDisposed_ObjectName_Name"), name); } } public String ObjectName { get { if (objectName == null) return String.Empty; return objectName; } } protected ObjectDisposedException(SerializationInfo info, StreamingContext context) : base(info, context) { objectName = info.GetString("ObjectName"); } [SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.SerializationFormatter)] public override void GetObjectData(SerializationInfo info, StreamingContext context) { base.GetObjectData(info, context); info.AddValue("ObjectName",ObjectName,typeof(String)); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.Gets the text for the message for this exception. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AssemblyBuilder.cs
- File.cs
- DataFormat.cs
- SelectedGridItemChangedEvent.cs
- EntityDataSourceDesignerHelper.cs
- RC2CryptoServiceProvider.cs
- BaseProcessor.cs
- XmlSerializerAssemblyAttribute.cs
- ToolStripItemCollection.cs
- SamlNameIdentifierClaimResource.cs
- CfgArc.cs
- ImageFormatConverter.cs
- WebZone.cs
- AndCondition.cs
- PtsHost.cs
- unsafenativemethodstextservices.cs
- TrustLevelCollection.cs
- HttpDictionary.cs
- VBCodeProvider.cs
- XPathSelfQuery.cs
- Matrix3DValueSerializer.cs
- columnmapkeybuilder.cs
- LocalizationComments.cs
- HtmlControlDesigner.cs
- OleDbStruct.cs
- SignatureResourcePool.cs
- controlskin.cs
- ThumbAutomationPeer.cs
- OleDbInfoMessageEvent.cs
- TransformProviderWrapper.cs
- BuildDependencySet.cs
- ToolboxItem.cs
- DataKeyCollection.cs
- XNodeValidator.cs
- ExtensionDataObject.cs
- DataControlFieldTypeEditor.cs
- TaskFormBase.cs
- AssemblyCollection.cs
- WizardForm.cs
- MsmqEncryptionAlgorithm.cs
- CharAnimationUsingKeyFrames.cs
- VarInfo.cs
- RSAPKCS1SignatureDeformatter.cs
- Line.cs
- MappingMetadataHelper.cs
- ClientBuildManagerTypeDescriptionProviderBridge.cs
- DataGridDesigner.cs
- RenderContext.cs
- listviewsubitemcollectioneditor.cs
- SafeSystemMetrics.cs
- BuildProviderCollection.cs
- StyleHelper.cs
- TimerEventSubscriptionCollection.cs
- XmlSchemaSequence.cs
- TrustSection.cs
- XmlQueryStaticData.cs
- XMLUtil.cs
- AssemblyCache.cs
- TimeoutStream.cs
- IdentityReference.cs
- TransformerConfigurationWizardBase.cs
- SizeConverter.cs
- FontStyleConverter.cs
- PropertyTabAttribute.cs
- PermissionSetTriple.cs
- TemplateNameScope.cs
- AspNetSynchronizationContext.cs
- IdentityReference.cs
- UIElementCollection.cs
- XmlSchemaCollection.cs
- columnmapkeybuilder.cs
- MetadataPropertyvalue.cs
- ProfileBuildProvider.cs
- HttpHostedTransportConfiguration.cs
- EntityClassGenerator.cs
- StringUtil.cs
- MobileSysDescriptionAttribute.cs
- WebPartActionVerb.cs
- CqlIdentifiers.cs
- NameTable.cs
- XmlTextReaderImpl.cs
- PersonalizationProviderCollection.cs
- ToolboxItem.cs
- CodePrimitiveExpression.cs
- RenderData.cs
- GatewayDefinition.cs
- CFStream.cs
- TcpChannelFactory.cs
- WindowsScrollBar.cs
- Tile.cs
- DataPointer.cs
- GlobalEventManager.cs
- ConfigXmlComment.cs
- StylusSystemGestureEventArgs.cs
- ScalarRestriction.cs
- RadioButton.cs
- VisualStateChangedEventArgs.cs
- ClientOptions.cs
- HttpPostedFile.cs
- DataColumnMappingCollection.cs