Adf.Base.Tasks.Task.Finish C# (CSharp) Method

Finish() public method

Provides the method to finish one or more tasks. Also deactivate the task view of Task class object.
public Finish ( TaskResult returntype ) : void
returntype Adf.Core.Tasks.TaskResult The that defines the current status of a task.
return void
        public void Finish(TaskResult returntype, params object[] p)
        {
            this.DeactivateView();

            TaskManager.Return(this, returntype, p);
        }