Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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. // // ==--== 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 { 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.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
- BufferBuilder.cs
- SystemIPGlobalProperties.cs
- EventProvider.cs
- FlowchartDesignerCommands.cs
- DmlSqlGenerator.cs
- SqlOuterApplyReducer.cs
- SHA512CryptoServiceProvider.cs
- TreeViewDesigner.cs
- XPathNodeIterator.cs
- _FixedSizeReader.cs
- WithParamAction.cs
- AdapterUtil.cs
- ReaderOutput.cs
- Configuration.cs
- ObjectIDGenerator.cs
- SiteOfOriginContainer.cs
- PropertyPushdownHelper.cs
- TabControlAutomationPeer.cs
- UnsafeNativeMethods.cs
- ProxyDataContractResolver.cs
- MemoryPressure.cs
- PerfCounters.cs
- PermissionToken.cs
- ClientSettings.cs
- AssemblyBuilder.cs
- EntityModelSchemaGenerator.cs
- Asn1IntegerConverter.cs
- ListViewDeleteEventArgs.cs
- ThreadStateException.cs
- EventLogPermission.cs
- DependencySource.cs
- AbstractDataSvcMapFileLoader.cs
- ADConnectionHelper.cs
- PeerObject.cs
- TrustLevel.cs
- ExpressionList.cs
- SendKeys.cs
- ADConnectionHelper.cs
- ColorConvertedBitmapExtension.cs
- BitmapEffectDrawingContextState.cs
- CompilerScopeManager.cs
- HWStack.cs
- PackWebRequest.cs
- MessageDecoder.cs
- TypeConstant.cs
- CompilationUtil.cs
- ObjectParameterCollection.cs
- DateBoldEvent.cs
- Semaphore.cs
- CaseInsensitiveComparer.cs
- ComplexLine.cs
- XmlUtil.cs
- CodeExpressionStatement.cs
- CodeObject.cs
- WebPartsPersonalizationAuthorization.cs
- EditCommandColumn.cs
- StrokeCollection.cs
- SoapWriter.cs
- WebPartHelpVerb.cs
- SurrogateEncoder.cs
- Variant.cs
- InternalCache.cs
- CompositeTypefaceMetrics.cs
- ComplexTypeEmitter.cs
- FolderBrowserDialog.cs
- HostUtils.cs
- CompilerState.cs
- ExternalCalls.cs
- ReadOnlyPermissionSet.cs
- Trace.cs
- MatrixTransform.cs
- PointValueSerializer.cs
- XmlSchemaSimpleContentExtension.cs
- AssemblyUtil.cs
- ColumnPropertiesGroup.cs
- BulletedList.cs
- XmlIncludeAttribute.cs
- CompiledQueryCacheKey.cs
- DesignerLabelAdapter.cs
- DBAsyncResult.cs
- AnimatedTypeHelpers.cs
- ManifestResourceInfo.cs
- SchemaCollectionCompiler.cs
- EventLogPropertySelector.cs
- GridPatternIdentifiers.cs
- HostProtectionPermission.cs
- DecoderExceptionFallback.cs
- JournalEntryStack.cs
- CodeDirectiveCollection.cs
- UserControl.cs
- GridViewRowPresenter.cs
- ImageListUtils.cs
- SingleAnimationBase.cs
- GAC.cs
- Positioning.cs
- DocumentXPathNavigator.cs
- ColorConvertedBitmap.cs
- DbProviderConfigurationHandler.cs
- Rotation3DAnimationBase.cs
- SQLResource.cs