HttpResponseMessageExtensionMethods.ToMessage(HttpResponseMessage) Method

Definition

Creates a Message instance from an HttpResponseMessage instance.

public:
[System::Runtime::CompilerServices::Extension]
 static System::ServiceModel::Channels::Message ^ ToMessage(System::Net::Http::HttpResponseMessage ^ httpResponseMessage);
public static System.ServiceModel.Channels.Message ToMessage (this System.Net.Http.HttpResponseMessage httpResponseMessage);
static member ToMessage : System.Net.Http.HttpResponseMessage -> System.ServiceModel.Channels.Message
<Extension()>
Public Function ToMessage (httpResponseMessage As HttpResponseMessage) As Message

Parameters

httpResponseMessage
HttpResponseMessage

The HttpResponseMessage from which to create the Message instance.

Returns

The new Message instance.

Remarks

The Message instance can be read, written and copied just as a traditional ByteStreamMessage instance. The Message instance can also "read" to retrieve the original HttpResponseMessage instance by calling the ToHttpResponseMessage extension method.

Applies to