Table of Contents

Class DedicatedThreadSynchronizationContext

Namespace
LfrlAnvil.Async
Assembly
LfrlAnvil.Core.dll

Represents a SynchronizationContext with a dedicated underlying Thread.

public sealed class DedicatedThreadSynchronizationContext : SynchronizationContext, IDisposable
Inheritance
DedicatedThreadSynchronizationContext
Implements
Inherited Members
Extension Methods

Constructors

DedicatedThreadSynchronizationContext(ThreadParams)

Creates a new DedicatedThreadSynchronizationContext instance.

public DedicatedThreadSynchronizationContext(ThreadParams @params = default)

Parameters

params ThreadParams

Optional parameters for the underlying thread.

Properties

IsActive

Value indicating the execution status of the underlying thread.

public bool IsActive { get; }

Property Value

bool

ThreadCulture

Culture of the underlying thread.

public CultureInfo ThreadCulture { get; }

Property Value

CultureInfo

ThreadId

Unique identifier of the underlying thread.

public int ThreadId { get; }

Property Value

int

ThreadName

Name of the underlying thread.

public string? ThreadName { get; }

Property Value

string

ThreadPriority

Value indicating the scheduling priority of the underlying thread.

public ThreadPriority ThreadPriority { get; }

Property Value

ThreadPriority

ThreadUICulture

UI culture of the underlying thread.

public CultureInfo ThreadUICulture { get; }

Property Value

CultureInfo

Methods

Dispose()

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

public void Dispose()

JoinThread()

Joins current thread to the underlying thread of this synchronization context.

public void JoinThread()

Post(SendOrPostCallback, object?)

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

public override void Post(SendOrPostCallback d, object? state)

Parameters

d SendOrPostCallback

The SendOrPostCallback delegate to call.

state object

The object passed to the delegate.

Send(SendOrPostCallback, object?)

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

public override void Send(SendOrPostCallback d, object? state)

Parameters

d SendOrPostCallback

The SendOrPostCallback delegate to call.

state object

The object passed to the delegate.

Exceptions

NotSupportedException

The method was called in a Windows Store app. The implementation of SynchronizationContext for Windows Store apps does not support the Send(SendOrPostCallback, object) method.