C# Класс ToolBelt.CommandLineArgumentException

Наследование: System.ArgumentException
Показать файл Открыть проект

Открытые методы

Метод Описание
CommandLineArgumentException ( ) : System

Initializes a new instance of the CommandLineArgumentException class.

CommandLineArgumentException ( string message ) : System

Initializes a new instance of the CommandLineArgumentException class with a descriptive message.

CommandLineArgumentException ( string message, Exception innerException ) : System

Initializes a new instance of the CommandLineArgumentException class with a descriptive message and an inner exception.

Приватные методы

Метод Описание
CommandLineArgumentException ( SerializationInfo info, StreamingContext context ) : System

Описание методов

CommandLineArgumentException() публичный Метод

Initializes a new instance of the CommandLineArgumentException class.
public CommandLineArgumentException ( ) : System
Результат System

CommandLineArgumentException() публичный Метод

Initializes a new instance of the CommandLineArgumentException class with a descriptive message.
public CommandLineArgumentException ( string message ) : System
message string A descriptive message to include with the exception.
Результат System

CommandLineArgumentException() публичный Метод

Initializes a new instance of the CommandLineArgumentException class with a descriptive message and an inner exception.
public CommandLineArgumentException ( string message, Exception innerException ) : System
message string A descriptive message to include with the exception.
innerException System.Exception A nested exception that is the cause of the current exception.
Результат System