C# 클래스 ExcelDna.IntelliSense.SingleThreadSynchronizationContext

Provides a SynchronizationContext that's single-threaded.
상속: System.Threading.SynchronizationContext
파일 보기 프로젝트 열기: Excel-DNA/IntelliSense 1 사용 예제들

공개 메소드들

메소드 설명
Complete ( ) : void

Notifies the context that no more work will arrive.

Post ( SendOrPostCallback d, object state ) : void

The processing thread.

Dispatches an asynchronous message to the synchronization context.

RunOnCurrentThread ( ) : void

Runs a loop to process all queued work items.

Send ( SendOrPostCallback d, object state ) : void

메소드 상세

Complete() 공개 메소드

Notifies the context that no more work will arrive.
public Complete ( ) : void
리턴 void

Post() 공개 메소드

The processing thread. Dispatches an asynchronous message to the synchronization context.
public Post ( SendOrPostCallback d, object state ) : void
d SendOrPostCallback The System.Threading.SendOrPostCallback delegate to call.
state object The object passed to the delegate.
리턴 void

RunOnCurrentThread() 공개 메소드

Runs a loop to process all queued work items.
public RunOnCurrentThread ( ) : void
리턴 void

Send() 공개 메소드

public Send ( SendOrPostCallback d, object state ) : void
d SendOrPostCallback
state object
리턴 void