C# Класс Nexus.Client.BackgroundTasks.TaskSetCompletedEventArgs

An event arguments class that indicates that a task set has completed.
Наследование: System.EventArgs
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Описание методов

TaskSetCompletedEventArgs() публичный Метод

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.
Результат System

TaskSetCompletedEventArgs() публичный Метод

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.
Результат System