System::Threading::SynchronizationContext class

SynchronizationContext class

Provides the basic functionality for propagating a synchronization context across various synchronization operations.

class SynchronizationContext : public System::Object

Methods

MethodDescription
static get_Current()Gets the synchronization context for the current thread.
static SetSynchronizationContext(const SharedPtr<SynchronizationContext>&)Sets the synchronization context for the current thread.
SynchronizationContext()RTTI information.

Remarks

This class enables the propagation of synchronization context between threads and is used to marshal callbacks or invocations to the appropriate thread or synchronization context. Dummy implementation.

See Also