C# Class Nexus.Client.BackgroundTasks.TaskEndedEventArgs

An event arguments class that indicates that a task has ended.
Inheritance: System.EventArgs
Mostrar archivo Open project: NexusMods/NexusModManager-4.5 Class Usage Examples

Public Methods

Method Description
TaskEndedEventArgs ( TaskStatus p_tstStatus, string p_strMessage, object p_objReturnValue ) : System

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

Method Details

TaskEndedEventArgs() public method

A simple constructor that initialized the obejct with the given values.
public TaskEndedEventArgs ( TaskStatus p_tstStatus, string p_strMessage, object p_objReturnValue ) : System
p_tstStatus TaskStatus The status of the ended task.
p_strMessage string The task completion message.
p_objReturnValue object The return value of the completed task.
return System