Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / WarningException.cs / 1305376 / 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
- VectorKeyFrameCollection.cs
- DesignerLoader.cs
- SafeUserTokenHandle.cs
- EndpointAddressAugust2004.cs
- PagePropertiesChangingEventArgs.cs
- Misc.cs
- ExpressionDumper.cs
- RMPublishingDialog.cs
- ResourceReader.cs
- DocumentXmlWriter.cs
- TypedReference.cs
- Library.cs
- ApplicationCommands.cs
- LinqDataSourceDeleteEventArgs.cs
- RangeContentEnumerator.cs
- CharConverter.cs
- VirtualPath.cs
- OAVariantLib.cs
- Wizard.cs
- ExpressionBindingCollection.cs
- EncryptedKey.cs
- Input.cs
- StringWriter.cs
- Material.cs
- HtmlInputHidden.cs
- XsltOutput.cs
- Rect3D.cs
- TextModifier.cs
- _RequestCacheProtocol.cs
- FileSystemInfo.cs
- CompositionAdorner.cs
- IIS7UserPrincipal.cs
- CorePropertiesFilter.cs
- DecimalAnimation.cs
- FlowPosition.cs
- SkipStoryboardToFill.cs
- JapaneseLunisolarCalendar.cs
- ProtocolsConfigurationHandler.cs
- HwndTarget.cs
- SafeRightsManagementEnvironmentHandle.cs
- DataMisalignedException.cs
- UTF32Encoding.cs
- assemblycache.cs
- PropertyItemInternal.cs
- BindingList.cs
- FixedNode.cs
- SessionEndedEventArgs.cs
- WCFServiceClientProxyGenerator.cs
- PerspectiveCamera.cs
- SelectorAutomationPeer.cs
- Line.cs
- OleDbWrapper.cs
- PersonalizationStateInfoCollection.cs
- ProcessModule.cs
- BitmapImage.cs
- ConfigurationSettings.cs
- SystemResourceHost.cs
- ExceptionHandlerDesigner.cs
- Faults.cs
- SubstitutionResponseElement.cs
- AssemblyCacheEntry.cs
- _ScatterGatherBuffers.cs
- PictureBoxDesigner.cs
- EnvironmentPermission.cs
- ValueTypeFixupInfo.cs
- ForeignConstraint.cs
- InvalidContentTypeException.cs
- ImageBrush.cs
- WebCategoryAttribute.cs
- SqlDataSourceFilteringEventArgs.cs
- GenericsInstances.cs
- ipaddressinformationcollection.cs
- HelpKeywordAttribute.cs
- LinkButton.cs
- TransactionManager.cs
- CryptoHelper.cs
- DataAccessor.cs
- ProfileGroupSettings.cs
- GridViewCancelEditEventArgs.cs
- InvalidPrinterException.cs
- PropertyItem.cs
- DictionaryManager.cs
- DataGridRowHeader.cs
- ConditionalDesigner.cs
- ConfigurationSettings.cs
- DataGridViewLinkCell.cs
- ExceptionHelpers.cs
- Popup.cs
- StrongNameUtility.cs
- RecognizerStateChangedEventArgs.cs
- ArcSegment.cs
- SafeBitVector32.cs
- _SpnDictionary.cs
- IssuedTokenServiceCredential.cs
- RemotingClientProxy.cs
- CqlQuery.cs
- FastPropertyAccessor.cs
- Setter.cs
- ManagementScope.cs
- BufferedGraphicsManager.cs