ClientBase<TChannel>.ChannelBase<T>.IOutputChannel.Send 方法

定义

向输出通道的目标传输一条消息。

重载

IOutputChannel.Send(Message)

向输出通道的目标传输一条消息。

IOutputChannel.Send(Message, TimeSpan)

在指定时间间隔内在当前输出通道上发送一条消息。

IOutputChannel.Send(Message)

Source:
ClientBase.cs
Source:
ClientBase.cs
Source:
ClientBase.cs

向输出通道的目标传输一条消息。

 virtual void System.ServiceModel.Channels.IOutputChannel.Send(System::ServiceModel::Channels::Message ^ message) = System::ServiceModel::Channels::IOutputChannel::Send;
void IOutputChannel.Send (System.ServiceModel.Channels.Message message);
abstract member System.ServiceModel.Channels.IOutputChannel.Send : System.ServiceModel.Channels.Message -> unit
override this.System.ServiceModel.Channels.IOutputChannel.Send : System.ServiceModel.Channels.Message -> unit
Sub Send (message As Message) Implements IOutputChannel.Send

参数

message
Message

正在输出通道上发送的消息。

实现

适用于

IOutputChannel.Send(Message, TimeSpan)

Source:
ClientBase.cs
Source:
ClientBase.cs
Source:
ClientBase.cs

在指定时间间隔内在当前输出通道上发送一条消息。

 virtual void System.ServiceModel.Channels.IOutputChannel.Send(System::ServiceModel::Channels::Message ^ message, TimeSpan timeout) = System::ServiceModel::Channels::IOutputChannel::Send;
void IOutputChannel.Send (System.ServiceModel.Channels.Message message, TimeSpan timeout);
abstract member System.ServiceModel.Channels.IOutputChannel.Send : System.ServiceModel.Channels.Message * TimeSpan -> unit
override this.System.ServiceModel.Channels.IOutputChannel.Send : System.ServiceModel.Channels.Message * TimeSpan -> unit
Sub Send (message As Message, timeout As TimeSpan) Implements IOutputChannel.Send

参数

message
Message

正在输出通道上发送的消息。

timeout
TimeSpan

指定在超时前必须完成发送操作的时间的时间跨度。

实现

适用于