Adf.Base.Tasks.TaskExecutionExtensions.RunTask C# (CSharp) Метод

RunTask() публичный статический Метод

Provides a method to run or execute one or more tasks.
public static RunTask ( this origin, ApplicationTask name ) : void
origin this The that defines the start point of task.
name ApplicationTask The that defines the name of task.
Результат void
        public static void RunTask(this ITask origin, ApplicationTask name, params object[] p)
        {
            TaskManager.Run(origin, name, p);
        }