EndpointAddress.ApplyTo(Message) Method

Definition

Assigns the URI and properties of the endpoint address to the values of the headers of a specified message.

public:
 void ApplyTo(System::ServiceModel::Channels::Message ^ message);
public void ApplyTo (System.ServiceModel.Channels.Message message);
member this.ApplyTo : System.ServiceModel.Channels.Message -> unit
Public Sub ApplyTo (message As Message)

Parameters

message
Message

The Message whose header values are being assigned.

Exceptions

message is null.

Examples

The following code shows how to apply the URI and properties of an endpoint address to the headers of a message.

Message msg = Message.CreateMessage(MessageVersion.Soap11, "urn:action");
endpointAddress.ApplyTo(msg);

Remarks

The ApplyTo(Message) method sets the "To" of the message with the Uri of the current EndpointAddress. Remember that "ApplyTo" means here "apply this address to the 'To' header of the message".

Applies to