Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SqlCharStream.cs
- AssemblyAttributes.cs
- ConfigsHelper.cs
- DisableDpiAwarenessAttribute.cs
- ToolStripDropDown.cs
- Formatter.cs
- ExtendedPropertyDescriptor.cs
- DynamicUpdateCommand.cs
- SimplePropertyEntry.cs
- PersonalizationState.cs
- UrlMappingsSection.cs
- Flattener.cs
- CompileLiteralTextParser.cs
- SkipQueryOptionExpression.cs
- SqlProcedureAttribute.cs
- GeometryCombineModeValidation.cs
- SqlErrorCollection.cs
- MobileControlsSection.cs
- FolderBrowserDialogDesigner.cs
- PerformanceCounterManager.cs
- DecoderReplacementFallback.cs
- TabControlCancelEvent.cs
- InstalledVoice.cs
- FixedDocument.cs
- XamlPoint3DCollectionSerializer.cs
- LayoutEvent.cs
- SelectionHighlightInfo.cs
- X509Utils.cs
- ObjectConverter.cs
- ScrollBarAutomationPeer.cs
- RelatedImageListAttribute.cs
- DataGridCellEditEndingEventArgs.cs
- SqlReorderer.cs
- SEHException.cs
- ZipFileInfoCollection.cs
- ClientBuildManagerCallback.cs
- AggregateNode.cs
- StreamGeometry.cs
- SingletonChannelAcceptor.cs
- NativeMethodsCLR.cs
- CompileLiteralTextParser.cs
- ConfigurationValidatorAttribute.cs
- CompositionTarget.cs
- RouteValueDictionary.cs
- _CommandStream.cs
- TdsParserSafeHandles.cs
- DocumentViewerAutomationPeer.cs
- IntegrationExceptionEventArgs.cs
- CustomAttribute.cs
- GenericRootAutomationPeer.cs
- HideDisabledControlAdapter.cs
- StatusBarDrawItemEvent.cs
- BitmapCache.cs
- GlobalDataBindingHandler.cs
- CheckPair.cs
- ProjectionCamera.cs
- SplitContainer.cs
- Metadata.cs
- BindingContext.cs
- EnvelopedSignatureTransform.cs
- StylusButtonCollection.cs
- DynamicDataResources.Designer.cs
- SystemException.cs
- WrapperEqualityComparer.cs
- GetPageNumberCompletedEventArgs.cs
- DataDocumentXPathNavigator.cs
- CacheOutputQuery.cs
- RuleSetBrowserDialog.cs
- EdmComplexPropertyAttribute.cs
- SqlAliaser.cs
- GeneratedView.cs
- DigitalSignature.cs
- ObjectAssociationEndMapping.cs
- ApplicationFileCodeDomTreeGenerator.cs
- InvalidDataContractException.cs
- SessionStateContainer.cs
- StaticExtension.cs
- TextCompositionManager.cs
- ImageDrawing.cs
- SelectionListComponentEditor.cs
- TemplateBindingExpressionConverter.cs
- ImageMap.cs
- GradientBrush.cs
- SettingsPropertyWrongTypeException.cs
- precedingquery.cs
- ResourcePool.cs
- ReliableRequestSessionChannel.cs
- DataServiceProcessingPipelineEventArgs.cs
- WeakReferenceEnumerator.cs
- EntityDataSourceDataSelection.cs
- X509ImageLogo.cs
- DesignerAttribute.cs
- CryptoKeySecurity.cs
- HttpTransportManager.cs
- SctClaimDictionary.cs
- SerialErrors.cs
- HMACSHA256.cs
- Typeface.cs
- PageDeviceFont.cs
- BinaryReader.cs