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

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

Public Methods

Method Description
ImportSucceededEventArgs ( bool p_blnPartialSuccess, int p_intTotalPluginCount, int p_intImportedPluginCount, List p_lstNotImported ) : System

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

ImportSucceededEventArgs ( int p_intTotalPluginCount, int p_intImportedPluginCount, List p_lstNotImported ) : System

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

ImportSucceededEventArgs ( string p_strFilename, bool p_blnPartialSuccess, int p_intTotalPluginCount, int p_intImportedPluginCount, List p_lstNotImported ) : System

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

ImportSucceededEventArgs ( string p_strFilename, int p_intTotalPluginCount, int p_intImportedPluginCount, List p_lstNotImported ) : System

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

Method Details

ImportSucceededEventArgs() public method

A simple constructor that initializes the object with the given values.
public ImportSucceededEventArgs ( bool p_blnPartialSuccess, int p_intTotalPluginCount, int p_intImportedPluginCount, List p_lstNotImported ) : System
p_blnPartialSuccess bool Whether or not the import was only partially successful.
p_intTotalPluginCount int The total number of plugins that were found on the clipboard.
p_intImportedPluginCount int The number of plugins that were imported.
p_lstNotImported List The list of plugins that were not found in the collection.
return System

ImportSucceededEventArgs() public method

A simple constructor that initializes the object with the given values.
public ImportSucceededEventArgs ( int p_intTotalPluginCount, int p_intImportedPluginCount, List p_lstNotImported ) : System
p_intTotalPluginCount int The total number of plugins that were found on the clipboard.
p_intImportedPluginCount int The number of plugins that were imported.
p_lstNotImported List The list of plugins that were not found in the collection.
return System

ImportSucceededEventArgs() public method

A simple constructor that initializes the object with the given values.
public ImportSucceededEventArgs ( string p_strFilename, bool p_blnPartialSuccess, int p_intTotalPluginCount, int p_intImportedPluginCount, List p_lstNotImported ) : System
p_strFilename string The filename that the load order was imported from.
p_blnPartialSuccess bool Whether or not the import was only partially successful.
p_intTotalPluginCount int The total number of plugins that were found in the specified import source.
p_intImportedPluginCount int The number of plugins that were imported.
p_lstNotImported List The list of plugins that were not found in the collection.
return System

ImportSucceededEventArgs() public method

A simple constructor that initializes the object with the given values.
public ImportSucceededEventArgs ( string p_strFilename, int p_intTotalPluginCount, int p_intImportedPluginCount, List p_lstNotImported ) : System
p_strFilename string The filename that the load order was imported from.
p_intTotalPluginCount int The total number of plugins that were found in the specified import source.
p_intImportedPluginCount int The number of plugins that were imported.
p_lstNotImported List The list of plugins that were not found in the collection.
return System