Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / ObjectDisposedException.cs / 1305376 / 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 { [System.Security.SecuritySafeCritical] // auto-generated get { String name = ObjectName; if (name == null || name.Length == 0) return base.Message; String objectDisposed = Environment.GetResourceString("ObjectDisposed_ObjectName_Name", name); return base.Message + Environment.NewLine + objectDisposed; } } public String ObjectName { get { if (objectName == null) return String.Empty; return objectName; } } [System.Security.SecuritySafeCritical] // auto-generated protected ObjectDisposedException(SerializationInfo info, StreamingContext context) : base(info, context) { objectName = info.GetString("ObjectName"); } [System.Security.SecurityCritical] // auto-generated_required 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. // // ==--== namespace System { using System; using System.Runtime.Serialization; using System.Globalization; using System.Security.Permissions; ///Gets the text for the message for this exception. ////// [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 { [System.Security.SecuritySafeCritical] // auto-generated get { String name = ObjectName; if (name == null || name.Length == 0) return base.Message; String objectDisposed = Environment.GetResourceString("ObjectDisposed_ObjectName_Name", name); return base.Message + Environment.NewLine + objectDisposed; } } public String ObjectName { get { if (objectName == null) return String.Empty; return objectName; } } [System.Security.SecuritySafeCritical] // auto-generated protected ObjectDisposedException(SerializationInfo info, StreamingContext context) : base(info, context) { objectName = info.GetString("ObjectName"); } [System.Security.SecurityCritical] // auto-generated_required 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.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
- OneOfElement.cs
- SortedSetDebugView.cs
- DataGridBoolColumn.cs
- XmlDictionaryString.cs
- RadioButtonPopupAdapter.cs
- EncryptedReference.cs
- QuaternionRotation3D.cs
- clipboard.cs
- Error.cs
- ReadOnlyHierarchicalDataSource.cs
- InProcStateClientManager.cs
- CommandHelpers.cs
- AutomationElement.cs
- ExecutedRoutedEventArgs.cs
- HtmlInputSubmit.cs
- CodeRegionDirective.cs
- ConnectionPointGlyph.cs
- PerfCounterSection.cs
- RelatedImageListAttribute.cs
- TextBounds.cs
- WebPartAddingEventArgs.cs
- ConnectionPoolManager.cs
- TdsParserSafeHandles.cs
- LinkClickEvent.cs
- WpfKnownTypeInvoker.cs
- ActivityExecutorDelegateInfo.cs
- CustomTypeDescriptor.cs
- AuthenticationSection.cs
- SafeNativeMethods.cs
- IntPtr.cs
- TextRange.cs
- DataGridViewCellCollection.cs
- InvalidStoreProtectionKeyException.cs
- PageThemeParser.cs
- TemplatedAdorner.cs
- PropertyMetadata.cs
- PeerCredential.cs
- TextRunProperties.cs
- EndPoint.cs
- DataGridViewTextBoxEditingControl.cs
- GeneralTransform3DGroup.cs
- XPathParser.cs
- DecoderExceptionFallback.cs
- RemotingConfigParser.cs
- ListViewItem.cs
- PopupControlService.cs
- SqlUnionizer.cs
- ComAdminInterfaces.cs
- X509CertificateCollection.cs
- XmlAttributeCollection.cs
- BaseCollection.cs
- BindingEntityInfo.cs
- DataBoundControlAdapter.cs
- ParagraphResult.cs
- precedingsibling.cs
- Transform3DGroup.cs
- _SslState.cs
- PropertyInformation.cs
- AssociationEndMember.cs
- ItemMap.cs
- GridViewColumnCollection.cs
- ColorTranslator.cs
- RootCodeDomSerializer.cs
- ContractHandle.cs
- ControlTemplate.cs
- DbgCompiler.cs
- RenderDataDrawingContext.cs
- SByte.cs
- SolidColorBrush.cs
- TdsParserSafeHandles.cs
- SafeNativeMethods.cs
- SignatureDescription.cs
- DesignSurfaceServiceContainer.cs
- BamlWriter.cs
- CDSsyncETWBCLProvider.cs
- ScaleTransform.cs
- TraceHandlerErrorFormatter.cs
- TypefaceMap.cs
- PointIndependentAnimationStorage.cs
- TreeViewAutomationPeer.cs
- DataException.cs
- KeyFrames.cs
- Setter.cs
- InheritablePropertyChangeInfo.cs
- OracleString.cs
- SimpleBitVector32.cs
- TimeStampChecker.cs
- PropertyMetadata.cs
- DynamicValidatorEventArgs.cs
- DetailsView.cs
- ConfigXmlText.cs
- AuthenticationService.cs
- SizeAnimation.cs
- Rect3DConverter.cs
- AppSettingsReader.cs
- DrawingAttributeSerializer.cs
- EncryptedXml.cs
- XmlAttributeCollection.cs
- GridViewDeleteEventArgs.cs
- AssemblyName.cs