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
- SelectionManager.cs
- ComplexPropertyEntry.cs
- Int16KeyFrameCollection.cs
- DbProviderFactoriesConfigurationHandler.cs
- milrender.cs
- ApplicationException.cs
- EventArgs.cs
- UpdatePanelTriggerCollection.cs
- SeekableMessageNavigator.cs
- DataFormats.cs
- ThrowOnMultipleAssignment.cs
- WorkflowEnvironment.cs
- TypeForwardedFromAttribute.cs
- FileDataSourceCache.cs
- Table.cs
- XDeferredAxisSource.cs
- XamlHttpHandlerFactory.cs
- KeySpline.cs
- StringArrayConverter.cs
- ChangeProcessor.cs
- PropertyEmitter.cs
- PropertyInfoSet.cs
- HwndSource.cs
- StringTraceRecord.cs
- CombinedTcpChannel.cs
- ClientTarget.cs
- CutCopyPasteHelper.cs
- PointAnimationUsingKeyFrames.cs
- ProxyElement.cs
- TextParentUndoUnit.cs
- BaseTypeViewSchema.cs
- ResourceAssociationType.cs
- MetafileHeaderWmf.cs
- FormViewInsertEventArgs.cs
- BaseDataBoundControl.cs
- DocumentPageViewAutomationPeer.cs
- RowBinding.cs
- ObjectHandle.cs
- Query.cs
- SplitterDesigner.cs
- ModuleConfigurationInfo.cs
- ActivityStatusChangeEventArgs.cs
- TraceXPathNavigator.cs
- InstanceLockedException.cs
- Span.cs
- WebPartEditVerb.cs
- ViewGenerator.cs
- DtcInterfaces.cs
- Baml2006KeyRecord.cs
- IdentifierService.cs
- FormClosingEvent.cs
- TableCellCollection.cs
- MediaElementAutomationPeer.cs
- PackageProperties.cs
- DataSourceHelper.cs
- XmlDictionaryString.cs
- FieldDescriptor.cs
- SoapIgnoreAttribute.cs
- AdapterUtil.cs
- SerializationEventsCache.cs
- GZipStream.cs
- PageParser.cs
- Viewport2DVisual3D.cs
- GorillaCodec.cs
- RuleSettings.cs
- Stream.cs
- VariableAction.cs
- EncoderFallback.cs
- ScrollItemProviderWrapper.cs
- CharacterHit.cs
- ExpandoClass.cs
- TypeTypeConverter.cs
- CodePageEncoding.cs
- OracleCommand.cs
- AssemblyInfo.cs
- Calendar.cs
- XmlSerializerVersionAttribute.cs
- FilterElement.cs
- ResourceManager.cs
- TransformGroup.cs
- Label.cs
- SortFieldComparer.cs
- ProxyWebPartConnectionCollection.cs
- FileEnumerator.cs
- FrameworkContentElement.cs
- NameNode.cs
- ColumnHeaderConverter.cs
- BitmapEffectCollection.cs
- Viewport3DAutomationPeer.cs
- baseaxisquery.cs
- OdbcInfoMessageEvent.cs
- errorpatternmatcher.cs
- BrowserCapabilitiesCompiler.cs
- DeviceContext.cs
- Brushes.cs
- PipelineModuleStepContainer.cs
- Console.cs
- SoapParser.cs
- RowUpdatedEventArgs.cs
- ZipFileInfoCollection.cs