Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// 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
- FilterQuery.cs
- NotificationContext.cs
- CodeBlockBuilder.cs
- CompareInfo.cs
- WebServiceClientProxyGenerator.cs
- PeerDuplexChannelListener.cs
- FocusWithinProperty.cs
- HostingPreferredMapPath.cs
- DataStreamFromComStream.cs
- DesignerGenericWebPart.cs
- SerialErrors.cs
- BaseAsyncResult.cs
- EventPrivateKey.cs
- ArrayTypeMismatchException.cs
- FunctionCommandText.cs
- WindowCollection.cs
- BooleanSwitch.cs
- VectorAnimationUsingKeyFrames.cs
- EntitySqlQueryState.cs
- EventDescriptor.cs
- Package.cs
- TranslateTransform3D.cs
- IIS7UserPrincipal.cs
- LeftCellWrapper.cs
- Error.cs
- LinkTarget.cs
- WebConfigurationHostFileChange.cs
- IPHostEntry.cs
- DataReceivedEventArgs.cs
- BitmapScalingModeValidation.cs
- RenderDataDrawingContext.cs
- SchemaEntity.cs
- BitmapSizeOptions.cs
- SingleStorage.cs
- XmlSchemaAttributeGroup.cs
- AssemblyAttributes.cs
- AuditLogLocation.cs
- StructuralCache.cs
- HttpStaticObjectsCollectionBase.cs
- CacheMode.cs
- SymbolTable.cs
- FileDialog_Vista_Interop.cs
- ChannelServices.cs
- FlowDocumentView.cs
- ExpressionWriter.cs
- ReadWriteSpinLock.cs
- MobileSysDescriptionAttribute.cs
- ExtensionFile.cs
- Utils.cs
- OperationInfo.cs
- LineSegment.cs
- FileAuthorizationModule.cs
- GPPOINT.cs
- ProxyGenerator.cs
- WCFBuildProvider.cs
- HttpCacheVaryByContentEncodings.cs
- XmlUtilWriter.cs
- CodeChecksumPragma.cs
- CompositeActivityCodeGenerator.cs
- ResXDataNode.cs
- CodeConditionStatement.cs
- VectorCollectionConverter.cs
- OLEDB_Enum.cs
- Memoizer.cs
- RuntimeResourceSet.cs
- BmpBitmapEncoder.cs
- BidirectionalDictionary.cs
- base64Transforms.cs
- TagPrefixCollection.cs
- RoleGroupCollectionEditor.cs
- ScrollBarAutomationPeer.cs
- SingleStorage.cs
- BasicExpandProvider.cs
- FormViewPageEventArgs.cs
- BuildResult.cs
- EmbeddedMailObjectsCollection.cs
- SortFieldComparer.cs
- ShaderRenderModeValidation.cs
- DrawingImage.cs
- ScrollBarAutomationPeer.cs
- SqlCacheDependencyDatabase.cs
- HttpListenerResponse.cs
- TrustLevelCollection.cs
- Atom10FormatterFactory.cs
- ThicknessAnimationUsingKeyFrames.cs
- DataGridCheckBoxColumn.cs
- GridSplitter.cs
- PropertyTabChangedEvent.cs
- XsdCachingReader.cs
- CodeLinePragma.cs
- DynamicDataManager.cs
- Method.cs
- QilParameter.cs
- HitTestWithGeometryDrawingContextWalker.cs
- DataTableMapping.cs
- DmlSqlGenerator.cs
- HostingEnvironmentException.cs
- DynamicILGenerator.cs
- SelectionEditingBehavior.cs
- WebEventCodes.cs