C# Класс Nexus.Client.PluginManagement.UI.ExportFailedEventArgs

An event arguments class that indicates that an export operation failed.
Наследование: System.EventArgs
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
ExportFailedEventArgs ( Exception p_exError ) : System

A simple constructor that initializes the object with the given values.

This form is used when exporting to the clipboard. The value of the Message is initially set to the given exception's Exception.Message.

ExportFailedEventArgs ( string p_strFilename, Exception p_exError ) : System

A simple constructor that initializes the object with the given values.

The value of the Message is initially set to the given exception's Exception.Message.

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

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

A simple constructor that initializes the object with the given values.
This form is used when exporting to the clipboard. The value of the Message is initially set to the given exception's Exception.Message.
public ExportFailedEventArgs ( Exception p_exError ) : System
p_exError System.Exception The error that occurred.
Результат System

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

A simple constructor that initializes the object with the given values.
The value of the Message is initially set to the given exception's Exception.Message.
public ExportFailedEventArgs ( string p_strFilename, Exception p_exError ) : System
p_strFilename string The filename that the load order failed to export to.
p_exError System.Exception The error that occurred.
Результат System