C# Class Nexus.Client.BackgroundTasks.TaskSetCompletedEventArgs

An event arguments class that indicates that a task set has completed.
Inheritance: System.EventArgs
Afficher le fichier Open project: NexusMods/NexusModManager-4.5 Class Usage Examples

Méthodes publiques

Méthode Description
TaskSetCompletedEventArgs ( bool p_booSuccess ) : System

A simple constructor that initialized the obejct with the given values.

TaskSetCompletedEventArgs ( bool p_booSuccess, string p_strMessage, object p_objReturnValue ) : System

A simple constructor that initialized the obejct with the given values.

Method Details

TaskSetCompletedEventArgs() public méthode

A simple constructor that initialized the obejct with the given values.
public TaskSetCompletedEventArgs ( bool p_booSuccess ) : System
p_booSuccess bool Whether or not the task set completed successfully.
Résultat System

TaskSetCompletedEventArgs() public méthode

A simple constructor that initialized the obejct with the given values.
public TaskSetCompletedEventArgs ( bool p_booSuccess, string p_strMessage, object p_objReturnValue ) : System
p_booSuccess bool Whether or not the task set completed successfully.
p_strMessage string The message of the completed task set.
p_objReturnValue object The return value of the completed task set.
Résultat System