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
- GetPageCompletedEventArgs.cs
- HwndPanningFeedback.cs
- Accessible.cs
- Item.cs
- OdbcUtils.cs
- AppSecurityManager.cs
- BitmapEffectDrawingContextWalker.cs
- SafeSecurityHelper.cs
- PlaceHolder.cs
- ADMembershipUser.cs
- Padding.cs
- Timer.cs
- Attributes.cs
- DateTime.cs
- GAC.cs
- FormattedTextSymbols.cs
- DataGridViewBand.cs
- ListViewSortEventArgs.cs
- HtmlInputRadioButton.cs
- HuffCodec.cs
- IdleTimeoutMonitor.cs
- WinHttpWebProxyFinder.cs
- MobileSysDescriptionAttribute.cs
- ParameterCollection.cs
- DocumentApplicationJournalEntryEventArgs.cs
- InstanceNotReadyException.cs
- SqlResolver.cs
- DataPagerFieldCollection.cs
- Cursors.cs
- ILGenerator.cs
- RSAPKCS1SignatureDeformatter.cs
- PageClientProxyGenerator.cs
- NameValueConfigurationCollection.cs
- AttributeParameterInfo.cs
- Activator.cs
- ToolBarOverflowPanel.cs
- ListItemCollection.cs
- EventLogPermissionAttribute.cs
- PanelContainerDesigner.cs
- InternalTransaction.cs
- GuidTagList.cs
- SvcMapFileLoader.cs
- NativeMethods.cs
- ReadOnlyHierarchicalDataSource.cs
- CompoundFileDeflateTransform.cs
- SubMenuStyleCollectionEditor.cs
- SafeNativeMethods.cs
- WebBrowsableAttribute.cs
- GeometryCollection.cs
- UrlMappingCollection.cs
- HTTPNotFoundHandler.cs
- GenericAuthenticationEventArgs.cs
- Util.cs
- PersonalizablePropertyEntry.cs
- Parser.cs
- DelegateTypeInfo.cs
- PrimitiveType.cs
- CheckedPointers.cs
- XPathNavigatorException.cs
- DataGridColumnReorderingEventArgs.cs
- ProxyWebPartConnectionCollection.cs
- PeerMaintainer.cs
- ReadOnlyAttribute.cs
- XmlSchemaDatatype.cs
- OuterGlowBitmapEffect.cs
- ExchangeUtilities.cs
- MsmqDecodeHelper.cs
- ListViewPagedDataSource.cs
- ReadOnlyDictionary.cs
- Int32RectConverter.cs
- controlskin.cs
- ScrollViewer.cs
- StringSource.cs
- ValidationPropertyAttribute.cs
- FreezableCollection.cs
- PermissionSetTriple.cs
- ServiceProviders.cs
- InternalConfigConfigurationFactory.cs
- ProfileSettingsCollection.cs
- SocketPermission.cs
- _IPv6Address.cs
- ClientProxyGenerator.cs
- VisualBrush.cs
- StringUtil.cs
- XsltSettings.cs
- WebFormsRootDesigner.cs
- LinkTarget.cs
- MultiplexingDispatchMessageFormatter.cs
- MergeLocalizationDirectives.cs
- WebChannelFactory.cs
- SspiSafeHandles.cs
- WorkflowClientDeliverMessageWrapper.cs
- InheritanceAttribute.cs
- LogicalCallContext.cs
- InputBinder.cs
- SqlGenerator.cs
- NoneExcludedImageIndexConverter.cs
- DataViewSettingCollection.cs
- DependencyProperty.cs
- AppSettingsExpressionBuilder.cs