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".
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET