Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / CompMod / System / ComponentModel / WarningException.cs / 1 / WarningException.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using Microsoft.Win32; using System; using System.Diagnostics; using System.Runtime.InteropServices; using System.Runtime.Serialization; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] [Serializable] public class WarningException : SystemException { private readonly string helpUrl; private readonly string helpTopic; ///Specifies an exception that is handled as a warning instead of an error. ////// public WarningException() : this(null, null, null) { } ///Initializes a new instance of the ///class with the last Win32 error /// that occured. /// public WarningException(string message) : this(message, null, null) { } ///Initializes a new instance of the ///class with /// the specified message and no Help file. /// public WarningException(string message, string helpUrl) : this(message, helpUrl, null) { } ///Initializes a new instance of the ///class with /// the specified message, and with access to the specified Help file. /// Initializes a new instance of the Exception class with a specified error message and a /// reference to the inner exception that is the cause of this exception. /// FxCop CA1032: Multiple constructors are required to correctly implement a custom exception. /// public WarningException( string message, Exception innerException ) : base(message, innerException) { } ////// public WarningException(string message, string helpUrl, string helpTopic) : base(message) { this.helpUrl = helpUrl; this.helpTopic = helpTopic; } ///Initializes a new instance of the ///class with the /// specified message, and with access to the specified Help file and topic. /// Need this constructor since Exception implements ISerializable. /// protected WarningException(SerializationInfo info, StreamingContext context) : base (info, context) { helpUrl = (string) info.GetValue("helpUrl", typeof(string)); helpTopic = (string) info.GetValue("helpTopic", typeof(string)); } ////// public string HelpUrl { get { return helpUrl; } } ///Specifies the Help file associated with the /// warning. This field is read-only. ////// public string HelpTopic { get { return helpTopic; } } ///Specifies the /// Help topic associated with the warning. This field is read-only. ////// Need this since Exception implements ISerializable and we have fields to save out. /// [SecurityPermission(SecurityAction.Demand, SerializationFormatter=true)] public override void GetObjectData(SerializationInfo info, StreamingContext context) { if (info == null) { throw new ArgumentNullException("info"); } info.AddValue("helpUrl", helpUrl); info.AddValue("helpTopic", helpTopic); base.GetObjectData(info, context); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using Microsoft.Win32; using System; using System.Diagnostics; using System.Runtime.InteropServices; using System.Runtime.Serialization; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] [Serializable] public class WarningException : SystemException { private readonly string helpUrl; private readonly string helpTopic; ///Specifies an exception that is handled as a warning instead of an error. ////// public WarningException() : this(null, null, null) { } ///Initializes a new instance of the ///class with the last Win32 error /// that occured. /// public WarningException(string message) : this(message, null, null) { } ///Initializes a new instance of the ///class with /// the specified message and no Help file. /// public WarningException(string message, string helpUrl) : this(message, helpUrl, null) { } ///Initializes a new instance of the ///class with /// the specified message, and with access to the specified Help file. /// Initializes a new instance of the Exception class with a specified error message and a /// reference to the inner exception that is the cause of this exception. /// FxCop CA1032: Multiple constructors are required to correctly implement a custom exception. /// public WarningException( string message, Exception innerException ) : base(message, innerException) { } ////// public WarningException(string message, string helpUrl, string helpTopic) : base(message) { this.helpUrl = helpUrl; this.helpTopic = helpTopic; } ///Initializes a new instance of the ///class with the /// specified message, and with access to the specified Help file and topic. /// Need this constructor since Exception implements ISerializable. /// protected WarningException(SerializationInfo info, StreamingContext context) : base (info, context) { helpUrl = (string) info.GetValue("helpUrl", typeof(string)); helpTopic = (string) info.GetValue("helpTopic", typeof(string)); } ////// public string HelpUrl { get { return helpUrl; } } ///Specifies the Help file associated with the /// warning. This field is read-only. ////// public string HelpTopic { get { return helpTopic; } } ///Specifies the /// Help topic associated with the warning. This field is read-only. ////// Need this since Exception implements ISerializable and we have fields to save out. /// [SecurityPermission(SecurityAction.Demand, SerializationFormatter=true)] public override void GetObjectData(SerializationInfo info, StreamingContext context) { if (info == null) { throw new ArgumentNullException("info"); } info.AddValue("helpUrl", helpUrl); info.AddValue("helpTopic", helpTopic); base.GetObjectData(info, context); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SqlDataSourceSelectingEventArgs.cs
- PrefixHandle.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- RelationshipEnd.cs
- ListBase.cs
- ReferentialConstraint.cs
- DisplayInformation.cs
- AxDesigner.cs
- PageAsyncTaskManager.cs
- CaseInsensitiveComparer.cs
- SizeValueSerializer.cs
- InheritanceContextChangedEventManager.cs
- ChangeProcessor.cs
- ColorContext.cs
- XsltConvert.cs
- ListViewUpdateEventArgs.cs
- DirectoryNotFoundException.cs
- GridViewUpdatedEventArgs.cs
- SimpleRecyclingCache.cs
- ListViewDeleteEventArgs.cs
- DependencyPropertyConverter.cs
- Typography.cs
- IdentifierService.cs
- CompilerError.cs
- XmlQueryType.cs
- SymbolDocumentInfo.cs
- ExceptionNotification.cs
- DataRecord.cs
- AttributeCollection.cs
- SafeViewOfFileHandle.cs
- IDReferencePropertyAttribute.cs
- OleDbWrapper.cs
- ConnectionStringsSection.cs
- _NestedSingleAsyncResult.cs
- LineGeometry.cs
- WindowsGraphics2.cs
- SpStreamWrapper.cs
- ObjectViewListener.cs
- GcHandle.cs
- SoapAttributeAttribute.cs
- GetWinFXPath.cs
- ChannelPoolSettings.cs
- Control.cs
- Interfaces.cs
- SpecialNameAttribute.cs
- XmlDownloadManager.cs
- SQLBytes.cs
- BitHelper.cs
- TemplateField.cs
- RtfControlWordInfo.cs
- IteratorFilter.cs
- WebHttpSecurityElement.cs
- StorageEntityContainerMapping.cs
- InvalidTimeZoneException.cs
- Reference.cs
- ProfileGroupSettings.cs
- SectionUpdates.cs
- TransformDescriptor.cs
- XPathNavigator.cs
- MethodToken.cs
- GenericIdentity.cs
- ScrollBar.cs
- SiteMapPath.cs
- UInt16.cs
- SerializationTrace.cs
- WpfSharedXamlSchemaContext.cs
- DurableServiceAttribute.cs
- Command.cs
- DocumentPageHost.cs
- TypeElement.cs
- ImageCodecInfoPrivate.cs
- RepeaterItem.cs
- FullTrustAssembly.cs
- HwndAppCommandInputProvider.cs
- SettingsPropertyValueCollection.cs
- HighContrastHelper.cs
- XmlAttributeOverrides.cs
- XmlObjectSerializerReadContextComplex.cs
- JsonEnumDataContract.cs
- ProfileGroupSettingsCollection.cs
- SubpageParaClient.cs
- VersionedStreamOwner.cs
- CacheForPrimitiveTypes.cs
- DbReferenceCollection.cs
- Preprocessor.cs
- AccessDataSourceDesigner.cs
- FormatException.cs
- ValuePattern.cs
- RepeatButtonAutomationPeer.cs
- WsatTransactionFormatter.cs
- HtmlTitle.cs
- TextUtf8RawTextWriter.cs
- MailSettingsSection.cs
- StorageEntityTypeMapping.cs
- OleDbCommandBuilder.cs
- TypeConstant.cs
- WindowPattern.cs
- DispatcherObject.cs
- ParameterCollection.cs
- CompositeFontFamily.cs