C# Класс LibiadaWeb.Exceptions.TypeArgumentException

Exception thrown to indicate that an inappropriate type argument was used for a type parameter to a generic type or method.
Наследование: System.Exception
Показать файл Открыть проект

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

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

Initializes a new instance of the TypeArgumentException class. Constructs a new instance of TypeArgumentException with no message.

TypeArgumentException ( string message ) : System

Initializes a new instance of the TypeArgumentException class. Constructs a new instance of TypeArgumentException with the given message.

TypeArgumentException ( string message, Exception inner ) : System

Initializes a new instance of the TypeArgumentException class. Constructs a new instance of TypeArgumentException with the given message and inner exception.

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

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

Initializes a new instance of the TypeArgumentException class. Constructs a new instance of TypeArgumentException with no message.
public TypeArgumentException ( ) : System
Результат System

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

Initializes a new instance of the TypeArgumentException class. Constructs a new instance of TypeArgumentException with the given message.
public TypeArgumentException ( string message ) : System
message string /// Message for the exception. ///
Результат System

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

Initializes a new instance of the TypeArgumentException class. Constructs a new instance of TypeArgumentException with the given message and inner exception.
public TypeArgumentException ( string message, Exception inner ) : System
message string /// Message for the exception. ///
inner System.Exception /// Inner exception. ///
Результат System