EndpointAddress.ApplyTo(Message) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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".