예제 #1
0
		void InnerInvoke ()
		{
			if (IsContinuation) {
				invoker.Invoke (contAncestor, state, this);
			} else {
				invoker.Invoke (this, state, this);
			}
		}
예제 #2
0
 void InnerInvoke()
 {
     if (IsContinuation)
     {
         invoker.Invoke(parent, state, this);
     }
     else
     {
         invoker.Invoke(this, state, this);
     }
 }
예제 #3
0
파일: Task.cs 프로젝트: luozhiping1987/api
 void InnerInvoke()
 {
     //if (IsContinuation)
     //{
     //    invoker.Invoke(contAncestor, state, this);
     //}
     //else
     //{
     invoker.Invoke(this, state, this);
     //}
 }