C# 클래스 Monobjc.Foundation.NSThreadSynchronizationContext

SynchronizationContext for posting operations to an
상속: System.Threading.SynchronizationContext
파일 보기 프로젝트 열기: Monobjc/monobjc

공개 메소드들

메소드 설명
CreateCopy ( ) : SynchronizationContext

Creates the copy.

NSThreadSynchronizationContext ( ) : System

Initializes a new instance of the Monobjc.Foundation.NSThreadSynchronizationContext class.

NSThreadSynchronizationContext ( NSThread thread ) : System

Initializes a new instance of the Monobjc.Foundation.NSThread+NSThreadSynchronizationContext class.

Post ( SendOrPostCallback d, Object state ) : void

Post an operation to the thread asynchronously.

Send ( SendOrPostCallback d, Object state ) : void

Send an operation to the thread and block until complete.

메소드 상세

CreateCopy() 공개 메소드

Creates the copy.
public CreateCopy ( ) : SynchronizationContext
리턴 System.Threading.SynchronizationContext

NSThreadSynchronizationContext() 공개 메소드

Initializes a new instance of the Monobjc.Foundation.NSThreadSynchronizationContext class.
public NSThreadSynchronizationContext ( ) : System
리턴 System

NSThreadSynchronizationContext() 공개 메소드

Initializes a new instance of the Monobjc.Foundation.NSThread+NSThreadSynchronizationContext class.
public NSThreadSynchronizationContext ( NSThread thread ) : System
thread NSThread The underlying thread.
리턴 System

Post() 공개 메소드

Post an operation to the thread asynchronously.
public Post ( SendOrPostCallback d, Object state ) : void
d SendOrPostCallback Delegate to invoke
state Object State object
리턴 void

Send() 공개 메소드

Send an operation to the thread and block until complete.
public Send ( SendOrPostCallback d, Object state ) : void
d SendOrPostCallback Delegate to invoke
state Object State object
리턴 void