Adf.Base.Tasks.TaskExecutionExtensions.RunTask C# (CSharp) Method

RunTask() public static method

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.
return void
        public static void RunTask(this ITask origin, ApplicationTask name, params object[] p)
        {
            TaskManager.Run(origin, name, p);
        }