C# Класс Monobjc.Foundation.NSThreadSynchronizationContext

SynchronizationContext for posting operations to an
Наследование: System.Threading.SynchronizationContext
Показать файл Открыть проект

Открытые методы

Метод Описание
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