C# Класс ReactiveUI.UnhandledErrorException

Indicates that an object implementing IHandleObservableErrors has errored and nothing is attached to IHandleObservableErrors.ThrownExceptions to handle that error.
Наследование: System.Exception
Показать файл Открыть проект

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

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

Creates a new instance of UnhandledErrorException.

UnhandledErrorException ( string message ) : System

Creates a new instance of UnhandledErrorException.

UnhandledErrorException ( string message, Exception innerException ) : System

Creates a new instance of UnhandledErrorException.

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

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

Creates a new instance of UnhandledErrorException.
public UnhandledErrorException ( ) : System
Результат System

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

Creates a new instance of UnhandledErrorException.
public UnhandledErrorException ( string message ) : System
message string /// The exception message. ///
Результат System

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

Creates a new instance of UnhandledErrorException.
public UnhandledErrorException ( string message, Exception innerException ) : System
message string /// The exception message. ///
innerException System.Exception /// The exception that caused this exception. ///
Результат System