Nexus.Client.BackgroundTasks.TaskSetCompletedEventArgs.TaskSetCompletedEventArgs C# (CSharp) Method

TaskSetCompletedEventArgs() public method

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.
return System
		public TaskSetCompletedEventArgs(bool p_booSuccess)
			: this(p_booSuccess, null, null)
		{
		}

Same methods

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