Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- PeerApplication.cs
- SecurityTokenRequirement.cs
- WindowsToolbarItemAsMenuItem.cs
- fixedPageContentExtractor.cs
- SequenceFullException.cs
- ModelToObjectValueConverter.cs
- _Win32.cs
- Operand.cs
- GridProviderWrapper.cs
- MailDefinition.cs
- TableLayoutSettingsTypeConverter.cs
- StackSpiller.cs
- SourceInterpreter.cs
- ChineseLunisolarCalendar.cs
- UniqueConstraint.cs
- TabletCollection.cs
- DateTimeUtil.cs
- SqlDataReader.cs
- StylusPointPropertyInfoDefaults.cs
- DataGridViewEditingControlShowingEventArgs.cs
- ByteRangeDownloader.cs
- panel.cs
- SiteMapHierarchicalDataSourceView.cs
- PageAdapter.cs
- ClaimComparer.cs
- Tag.cs
- ColorKeyFrameCollection.cs
- IncrementalReadDecoders.cs
- ReverseComparer.cs
- XPathNodePointer.cs
- SystemKeyConverter.cs
- ExpressionUtilities.cs
- XmlNamespaceDeclarationsAttribute.cs
- COM2PictureConverter.cs
- PointF.cs
- MenuItem.cs
- DbConnectionPoolGroupProviderInfo.cs
- DynamicValidatorEventArgs.cs
- DataGridViewColumnConverter.cs
- Win32Native.cs
- SynchronizationLockException.cs
- VersionConverter.cs
- CompressStream.cs
- XmlAtomicValue.cs
- QilList.cs
- ControlPaint.cs
- ToolStripLocationCancelEventArgs.cs
- ImageKeyConverter.cs
- CmsInterop.cs
- TimeIntervalCollection.cs
- ContractCodeDomInfo.cs
- CodeCatchClause.cs
- securitycriticaldataformultiplegetandset.cs
- odbcmetadatacolumnnames.cs
- SafeNativeMethods.cs
- FormViewRow.cs
- TopClause.cs
- DragEventArgs.cs
- ISessionStateStore.cs
- DataGridViewTextBoxColumn.cs
- BufferedWebEventProvider.cs
- EnumerableRowCollection.cs
- AccessViolationException.cs
- ExeConfigurationFileMap.cs
- XmlNullResolver.cs
- DataGridViewComboBoxColumn.cs
- GPPOINTF.cs
- TextEndOfLine.cs
- EntitySqlQueryCacheKey.cs
- DoubleAnimationUsingPath.cs
- ConfigurationUtility.cs
- StringReader.cs
- webeventbuffer.cs
- MimeParameter.cs
- VBCodeProvider.cs
- RestClientProxyHandler.cs
- DirtyTextRange.cs
- RoutedEventConverter.cs
- DataTemplateKey.cs
- RequestCachingSection.cs
- TreeNode.cs
- ProfileManager.cs
- PropertyBuilder.cs
- MediaContextNotificationWindow.cs
- EventSchemaTraceListener.cs
- QilList.cs
- StrokeNodeEnumerator.cs
- MediaPlayer.cs
- PropertyEmitter.cs
- SettingsPropertyValueCollection.cs
- MulticastOption.cs
- ObjectDataProvider.cs
- SortQuery.cs
- documentsequencetextview.cs
- IItemContainerGenerator.cs
- FileBasedResourceGroveler.cs
- ComplexType.cs
- EncodingTable.cs
- UnsignedPublishLicense.cs
- COM2TypeInfoProcessor.cs