SetAsyncDelivery() public method

public SetAsyncDelivery ( AutoResetEvent eventHandle ) : void
eventHandle System.Threading.AutoResetEvent
return void
Ejemplo n.º 1
0
 internal void StartAsyncDelivery(Dispatcher dispatcher)
 {
     if (dispatcher != null)
     {
         dispatcher.SetAsyncDelivery(dispatchingThread.EventHandle);
     }
     dispatchingThread.Start();
 }
Ejemplo n.º 2
0
				internal void StartAsyncDelivery(Dispatcher dispatcher)
				{
					if(dispatcher != null)
						dispatcher.SetAsyncDelivery(dispatchingThread.EventHandle);
					dispatchingThread.Start();
				}