ClientBase<TChannel>.ChannelBase<T>.IOutputChannel.Send Method

Definition

Transmits a message to the destination of the output channel.

Overloads

IOutputChannel.Send(Message)

Transmits a message to the destination of the output channel.

IOutputChannel.Send(Message, TimeSpan)

Sends a message on the current output channel within a specified interval of time.

IOutputChannel.Send(Message)

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

Transmits a message to the destination of the output channel.

 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

Parameters

message
Message

The message being sent on the output channel.

Implements

Applies to

IOutputChannel.Send(Message, TimeSpan)

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

Sends a message on the current output channel within a specified interval of time.

 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

Parameters

message
Message

The message being sent on the output channel.

timeout
TimeSpan

The timespan that specifies how long the send operation has to complete before timing out.

Implements

Applies to