C# 클래스 WebApplications.Utilities.Threading.SerializingSynchronizationContext

상속: System.Threading.SynchronizationContext
파일 보기 프로젝트 열기: webappsuk/CoreLibraries 1 사용 예제들

공개 메소드들

메소드 설명
Post ( SendOrPostCallback callback, [ state ) : void

When overridden in a derived class, dispatches an asynchronous message to a synchronization context.

Send ( SendOrPostCallback callback, [ state ) : void

When overridden in a derived class, dispatches a synchronous message to a synchronization context.

비공개 메소드들

메소드 설명
ProcessQueue ( ) : void

Processes the queue.

메소드 상세

Post() 공개 메소드

When overridden in a derived class, dispatches an asynchronous message to a synchronization context.
public Post ( SendOrPostCallback callback, [ state ) : void
callback SendOrPostCallback The delegate to call.
state [ The object passed to the delegate.
리턴 void

Send() 공개 메소드

When overridden in a derived class, dispatches a synchronous message to a synchronization context.
public Send ( SendOrPostCallback callback, [ state ) : void
callback SendOrPostCallback The delegate to call.
state [ The object passed to the delegate.
리턴 void