SynchronizationContext.Send(SendOrPostCallback, Object) 方法

定义

在派生类中重写时,将同步消息分派到同步上下文。

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)

参数

d
SendOrPostCallback

要调用的 SendOrPostCallback 委托。

state
Object

传递给委托的对象。

例外

在 Windows Store 应用程序中调用的方法。 用于 Windows Store 应用程序的 SynchronizationContext 的实现应用不支持 Send(SendOrPostCallback, Object) 方法。

注解

该方法 Send 启动同步请求以发送消息。

适用于