C# Класс Eto.UnhandledExceptionEventArgs

Provides data for the event that is raised when there is an exception that is not handled otherwise
There is a System.UnhandledExceptionEventArgs class, but that doesn't seem to be available in the Core CLR, therefore we redefine it here.
Наследование: System.EventArgs
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
UnhandledExceptionEventArgs ( object exception, bool isTerminating ) : System

Initializes a new instance of the Eto.UnhandledExceptionEventArgs class.

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

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

Initializes a new instance of the Eto.UnhandledExceptionEventArgs class.
public UnhandledExceptionEventArgs ( object exception, bool isTerminating ) : System
exception object The exception object.
isTerminating bool true if the application will terminate, otherwise false.
Результат System