Code:
/ FX-1434 / FX-1434 / 1.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
- BamlRecords.cs
- ProfileWorkflowElement.cs
- SelectionChangedEventArgs.cs
- SerialPinChanges.cs
- BindingSource.cs
- CommentEmitter.cs
- XmlStreamStore.cs
- DataTableMapping.cs
- HtmlInputSubmit.cs
- DataColumnCollection.cs
- InboundActivityHelper.cs
- Repeater.cs
- MachineSettingsSection.cs
- ParsedAttributeCollection.cs
- SecurityCriticalDataForSet.cs
- ValidationHelpers.cs
- LinkLabel.cs
- TraceProvider.cs
- Menu.cs
- TextBox.cs
- DefaultValueAttribute.cs
- _SslState.cs
- QueryPageSettingsEventArgs.cs
- HashJoinQueryOperatorEnumerator.cs
- Icon.cs
- RtType.cs
- Enum.cs
- SplashScreen.cs
- FileClassifier.cs
- IgnoreDeviceFilterElementCollection.cs
- CodeIndexerExpression.cs
- ListViewInsertedEventArgs.cs
- QueryContinueDragEventArgs.cs
- SmtpTransport.cs
- MatrixCamera.cs
- ChannelParameterCollection.cs
- RSAPKCS1KeyExchangeFormatter.cs
- MethodBuilder.cs
- CodeAttributeDeclaration.cs
- basenumberconverter.cs
- ConfigurationElementCollection.cs
- HttpCachePolicy.cs
- SystemTcpStatistics.cs
- EllipseGeometry.cs
- ColorPalette.cs
- TransformCollection.cs
- XmlWhitespace.cs
- JournalEntryStack.cs
- EntityDataSourceChangedEventArgs.cs
- SapiRecognizer.cs
- GenericIdentity.cs
- AstNode.cs
- TableItemStyle.cs
- SQLBinaryStorage.cs
- HijriCalendar.cs
- CrossContextChannel.cs
- TargetControlTypeCache.cs
- OptionUsage.cs
- BitmapFrame.cs
- ViewCellRelation.cs
- HttpCapabilitiesEvaluator.cs
- ErrorStyle.cs
- PropertyGrid.cs
- HeaderLabel.cs
- relpropertyhelper.cs
- DataTablePropertyDescriptor.cs
- MimeFormReflector.cs
- SortQueryOperator.cs
- LogStream.cs
- RowSpanVector.cs
- VisualBrush.cs
- WorkerRequest.cs
- DesignerExtenders.cs
- XmlDataSource.cs
- ValidatorCompatibilityHelper.cs
- XmlSchemaInfo.cs
- DecoderBestFitFallback.cs
- CreateParams.cs
- RtType.cs
- XhtmlBasicCalendarAdapter.cs
- SamlAuthenticationStatement.cs
- Signature.cs
- ContextQuery.cs
- ProfileEventArgs.cs
- MethodBuilderInstantiation.cs
- StructuralCache.cs
- UIElement3D.cs
- PersonalizableAttribute.cs
- InstrumentationTracker.cs
- OpacityConverter.cs
- ListControl.cs
- CodePageUtils.cs
- ListParaClient.cs
- NullExtension.cs
- EnvironmentPermission.cs
- PictureBoxDesigner.cs
- UnsafeNativeMethodsCLR.cs
- CryptoApi.cs
- _DisconnectOverlappedAsyncResult.cs
- ProcessHostFactoryHelper.cs