SynchronizationContext.Send(SendOrPostCallback, Object) Method

Definition

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

public:
 virtual void Send(System::Threading::SendOrPostCallback ^ d, System::Object ^ state);
public virtual void Send (System.Threading.SendOrPostCallback d, object state);
public virtual void Send (System.Threading.SendOrPostCallback d, object? state);
abstract member Send : System.Threading.SendOrPostCallback * obj -> unit
override this.Send : System.Threading.SendOrPostCallback * obj -> unit
Public Overridable Sub Send (d As SendOrPostCallback, state As Object)

Parameters

d
SendOrPostCallback

The SendOrPostCallback delegate to call.

state
Object

The object passed to the delegate.

Exceptions

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.

Remarks

The Send method starts a synchronous request to send a message.

Applies to