상속: ITaskSupervisor
예제 #1
0
 public Scope()
 {
     _supervisor = new TaskSupervisor(this);
 }
예제 #2
0
        public TaskScope(string tag)
        {
            _participant = new TaskParticipant(tag);

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

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

            _supervisor = new TaskSupervisor(tag, this);
        }