BeginInvoke() 공개 메소드

public BeginInvoke ( SendOrPostCallback d, object state ) : void
d SendOrPostCallback
state object
리턴 void
예제 #1
0
 public override void Post(SendOrPostCallback d, object state)
 {
     m_dispatcher.BeginInvoke(d, state);
 }
예제 #2
0
 // called in worker thread context
 void _OnNewConnection(IConnection connection)
 {
     trace.TraceInformation("New connection");
     m_dispatcher.BeginInvoke(OnNewConnection, connection);
 }