Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WindowsFormsSectionHandler.cs
- HttpCookiesSection.cs
- XmlDataSource.cs
- _UriSyntax.cs
- WebBrowserEvent.cs
- SemanticResolver.cs
- WindowsSolidBrush.cs
- GridItemCollection.cs
- EmptyQuery.cs
- ContextToken.cs
- XmlElementAttribute.cs
- DropDownHolder.cs
- RuntimeWrappedException.cs
- FileCodeGroup.cs
- GroupStyle.cs
- ButtonField.cs
- MeshGeometry3D.cs
- translator.cs
- ListItem.cs
- Thickness.cs
- Int32CollectionValueSerializer.cs
- OdbcHandle.cs
- ListView.cs
- CultureInfoConverter.cs
- EditableRegion.cs
- IRCollection.cs
- HostVisual.cs
- UnaryOperationBinder.cs
- TextReturnReader.cs
- PeerNearMe.cs
- MessageQueueException.cs
- ChildTable.cs
- XomlDesignerLoader.cs
- WhitespaceReader.cs
- WebControlToolBoxItem.cs
- TypeLoadException.cs
- Configuration.cs
- Size3DValueSerializer.cs
- MultiTrigger.cs
- BitmapPalettes.cs
- AbsoluteQuery.cs
- TaskFileService.cs
- ScrollViewerAutomationPeer.cs
- ChangeNode.cs
- HttpListenerContext.cs
- DataGridViewCellCancelEventArgs.cs
- XPathAncestorQuery.cs
- HashCodeCombiner.cs
- JumpList.cs
- TableStyle.cs
- AuthorizationContext.cs
- _HTTPDateParse.cs
- SingleConverter.cs
- ProviderUtil.cs
- PointHitTestParameters.cs
- RawUIStateInputReport.cs
- UInt64.cs
- CaseStatementProjectedSlot.cs
- parserscommon.cs
- LinkLabelLinkClickedEvent.cs
- EndpointNameMessageFilter.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- SelectorAutomationPeer.cs
- JulianCalendar.cs
- Transform.cs
- CustomErrorsSection.cs
- ContextMenuService.cs
- coordinatorfactory.cs
- MailDefinition.cs
- XmlSchemaObjectTable.cs
- EventSetterHandlerConverter.cs
- Visual.cs
- DelimitedListTraceListener.cs
- MultiByteCodec.cs
- CodeTypeDeclaration.cs
- DateTimeOffsetAdapter.cs
- Positioning.cs
- XpsFilter.cs
- AppDomainUnloadedException.cs
- SequentialOutput.cs
- PerformanceCountersElement.cs
- GifBitmapEncoder.cs
- MetadataPropertyvalue.cs
- TextEditorTables.cs
- CodeAccessSecurityEngine.cs
- AppearanceEditorPart.cs
- QuotedPrintableStream.cs
- BitmapInitialize.cs
- AuthStoreRoleProvider.cs
- SplitterPanel.cs
- CodeFieldReferenceExpression.cs
- XmlAggregates.cs
- SyndicationItem.cs
- ScopedKnownTypes.cs
- UnionQueryOperator.cs
- StylusDownEventArgs.cs
- KnownTypesHelper.cs
- ZipIOBlockManager.cs
- GroupBox.cs
- Base64Encoder.cs