C# Class Crisis.CommandLine.InvalidOptionValueException

Inheritance: ParseException
Mostrar archivo Open project: teeknofil/Crisis-Wordlist-Generator

Public Methods

Method Description
InvalidOptionValueException ( ) : System

Initializes a new instance of the InvalidOptionValueException class.

InvalidOptionValueException ( string message ) : System

Initializes a new instance of the InvalidOptionValueException class.

InvalidOptionValueException ( string message, Exception innerException ) : System

Initializes a new instance of the InvalidOptionValueException class.

InvalidOptionValueException ( string message, bool includeDefaultMessage ) : System

Initializes a new instance of the InvalidOptionValueException class.

Protected Methods

Method Description
InvalidOptionValueException ( SerializationInfo info, StreamingContext context ) : System

Initializes a new instance of the InvalidOptionValueException class.

Private Methods

Method Description
GetObjectData ( SerializationInfo info, StreamingContext context ) : void

Method Details

InvalidOptionValueException() public method

Initializes a new instance of the InvalidOptionValueException class.
public InvalidOptionValueException ( ) : System
return System

InvalidOptionValueException() protected method

Initializes a new instance of the InvalidOptionValueException class.
The class name is null or is zero (0). The info parameter is null.
protected InvalidOptionValueException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo The that holds the serialized object data about the exception being thrown.
context System.Runtime.Serialization.StreamingContext The that contains contextual information about the source or destination.
return System

InvalidOptionValueException() public method

Initializes a new instance of the InvalidOptionValueException class.
public InvalidOptionValueException ( string message ) : System
message string The message.
return System

InvalidOptionValueException() public method

Initializes a new instance of the InvalidOptionValueException class.
public InvalidOptionValueException ( string message, Exception innerException ) : System
message string The message.
innerException System.Exception The inner exception.
return System

InvalidOptionValueException() public method

Initializes a new instance of the InvalidOptionValueException class.
public InvalidOptionValueException ( string message, bool includeDefaultMessage ) : System
message string The message.
includeDefaultMessage bool if set to true a default message will be prefixed to the error message specified, which /// will be something similar to "Invalid value <value> for option <optionName>: ".
return System