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

WarningException() protected method

Need this constructor since Exception implements ISerializable.
protected WarningException ( SerializationInfo info, StreamingContext context ) : Microsoft.Win32
info SerializationInfo
context StreamingContext
return Microsoft.Win32
        protected WarningException(SerializationInfo info, StreamingContext context) : base(info, context)
        {
            _helpUrl = (string)info.GetValue("helpUrl", typeof(string));
            _helpTopic = (string)info.GetValue("helpTopic", typeof(string));
        }

Same methods

WarningException::WarningException ( ) : Microsoft.Win32
WarningException::WarningException ( string message ) : Microsoft.Win32
WarningException::WarningException ( string message, Exception innerException ) : Microsoft.Win32
WarningException::WarningException ( string message, string helpUrl ) : Microsoft.Win32
WarningException::WarningException ( string message, string helpUrl, string helpTopic ) : Microsoft.Win32