C# Класс Goedel.Throw

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

Защищенные свойства (Protected)

Свойство Тип Описание
_Message string

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

Метод Описание
Always ( string Report ) : void

Throw an exception.

If ( bool Test, string Report ) : void

Throw an exception if the specified test is not met.

IfNot ( bool Test, string Report ) : void

Throw an exception if the specified test is met.

Throw ( string Message ) : System

Create an exception with the specified message.

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

Always() публичный статический Метод

Throw an exception.
public static Always ( string Report ) : void
Report string Message to report.
Результат void

If() публичный статический Метод

Throw an exception if the specified test is not met.
public static If ( bool Test, string Report ) : void
Test bool Must be true or exception is thrown.
Report string Message to report.
Результат void

IfNot() публичный статический Метод

Throw an exception if the specified test is met.
public static IfNot ( bool Test, string Report ) : void
Test bool Must be false or exception is thrown.
Report string Message to report.
Результат void

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

Create an exception with the specified message.
public Throw ( string Message ) : System
Message string
Результат System

Описание свойств

_Message защищенное свойство

The private message data.
protected string _Message
Результат string