Inheritance: ITaskSupervisor
 public Scope()
 {
     _supervisor = new TaskSupervisor(this);
 }
Exemple #2
0
        public TaskScope(string tag)
        {
            _participant = new TaskParticipant(tag);

            _supervisor = new TaskSupervisor(tag, this);
        }
Exemple #3
0
        public TaskScope(string tag, Action remove)
        {
            _participant = new TaskParticipant(tag, remove);

            _supervisor = new TaskSupervisor(tag, this);
        }
Exemple #4
0
 public Scope()
 {
     _supervisor = new TaskSupervisor(this);
 }
Exemple #5
0
        public TaskScope(string tag, Action remove)
        {
            _participant = new TaskParticipant(tag, remove);

            _supervisor = new TaskSupervisor(tag, this);
        }