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);
        }