C# Class Nexus.Client.PluginManagement.UI.ExportFailedEventArgs

An event arguments class that indicates that an export operation failed.
Inheritance: System.EventArgs
显示文件 Open project: NexusMods/NexusModManager-4.5 Class Usage Examples

Public Methods

Method Description
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.

Method Details

ExportFailedEventArgs() public method

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.
return System

ExportFailedEventArgs() public method

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.
return System