System.ComponentModel.WarningException.WarningException C# (CSharp) Method

WarningException() public method

Initializes a new instance of the class with the specified message, and with access to the specified Help file and topic.

public WarningException ( string message, string helpUrl, string helpTopic ) : Microsoft.Win32
message string
helpUrl string
helpTopic string
return Microsoft.Win32
        public WarningException(string message, string helpUrl, string helpTopic)
            : base(message)
        {
            _helpUrl = helpUrl;
            _helpTopic = helpTopic;
        }

Same methods

WarningException::WarningException ( ) : Microsoft.Win32
WarningException::WarningException ( SerializationInfo info, StreamingContext context ) : Microsoft.Win32
WarningException::WarningException ( string message ) : Microsoft.Win32
WarningException::WarningException ( string message, Exception innerException ) : Microsoft.Win32
WarningException::WarningException ( string message, string helpUrl ) : Microsoft.Win32