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

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

Public Methods

Method Description
ImportFailedEventArgs ( Exception p_exError ) : System

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

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

ImportFailedEventArgs ( string p_strMessage ) : System

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

This form is used when importing from the clipboard.

ImportFailedEventArgs ( 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.

ImportFailedEventArgs ( string p_strFilename, string p_strMessage ) : System

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

Method Details

ImportFailedEventArgs() public method

A simple constructor that initializes the object with the given values.
This form is used when importing from the clipboard. The value of the Message is initially set to the given exception's Exception.Message.
public ImportFailedEventArgs ( Exception p_exError ) : System
p_exError System.Exception The error that occurred.
return System

ImportFailedEventArgs() public method

A simple constructor that initializes the object with the given values.
This form is used when importing from the clipboard.
public ImportFailedEventArgs ( string p_strMessage ) : System
p_strMessage string A message describing why the import failed.
return System

ImportFailedEventArgs() 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 ImportFailedEventArgs ( string p_strFilename, Exception p_exError ) : System
p_strFilename string The filename that the load order failed to import from.
p_exError System.Exception The error that occurred.
return System

ImportFailedEventArgs() public method

A simple constructor that initializes the object with the given values.
public ImportFailedEventArgs ( string p_strFilename, string p_strMessage ) : System
p_strFilename string The filename that the load order failed to import from.
p_strMessage string A message describing why the import failed.
return System