ClientBase<TChannel>.ChannelBase<T>.IRequestChannel.Request Method

Definition

Sends a message-based request.

Overloads

IRequestChannel.Request(Message)

Sends a message-based request and returns the correlated message-based response.

IRequestChannel.Request(Message, TimeSpan)

Sends a message-based request and returns the correlated message-based response within a specified interval of time.

IRequestChannel.Request(Message)

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

Sends a message-based request and returns the correlated message-based response.

 virtual System::ServiceModel::Channels::Message ^ System.ServiceModel.Channels.IRequestChannel.Request(System::ServiceModel::Channels::Message ^ message) = System::ServiceModel::Channels::IRequestChannel::Request;
System.ServiceModel.Channels.Message IRequestChannel.Request (System.ServiceModel.Channels.Message message);
abstract member System.ServiceModel.Channels.IRequestChannel.Request : System.ServiceModel.Channels.Message -> System.ServiceModel.Channels.Message
override this.System.ServiceModel.Channels.IRequestChannel.Request : System.ServiceModel.Channels.Message -> System.ServiceModel.Channels.Message
Function Request (message As Message) As Message Implements IRequestChannel.Request

Parameters

message
Message

The request message to be transmitted.

Returns

The message received in response to the request.

Implements

Applies to

IRequestChannel.Request(Message, TimeSpan)

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

Sends a message-based request and returns the correlated message-based response within a specified interval of time.

 virtual System::ServiceModel::Channels::Message ^ System.ServiceModel.Channels.IRequestChannel.Request(System::ServiceModel::Channels::Message ^ message, TimeSpan timeout) = System::ServiceModel::Channels::IRequestChannel::Request;
System.ServiceModel.Channels.Message IRequestChannel.Request (System.ServiceModel.Channels.Message message, TimeSpan timeout);
abstract member System.ServiceModel.Channels.IRequestChannel.Request : System.ServiceModel.Channels.Message * TimeSpan -> System.ServiceModel.Channels.Message
override this.System.ServiceModel.Channels.IRequestChannel.Request : System.ServiceModel.Channels.Message * TimeSpan -> System.ServiceModel.Channels.Message
Function Request (message As Message, timeout As TimeSpan) As Message Implements IRequestChannel.Request

Parameters

message
Message

The request message to be transmitted.

timeout
TimeSpan

The timespan that specifies the interval of time within which a response must be received.

Returns

The message received in response to the request.

Implements

Applies to