TypedMessageConverter.ToMessage Method

Definition

Creates a Message instance from the specified typed message.

Overloads

ToMessage(Object)

Creates a Message instance from the specified typed message.

ToMessage(Object, MessageVersion)

Creates a Message instance from the specified typed message using the specified version.

ToMessage(Object)

Source:
TypedMessageConverter.cs
Source:
TypedMessageConverter.cs
Source:
TypedMessageConverter.cs

Creates a Message instance from the specified typed message.

public:
 abstract System::ServiceModel::Channels::Message ^ ToMessage(System::Object ^ typedMessage);
public abstract System.ServiceModel.Channels.Message ToMessage (object typedMessage);
abstract member ToMessage : obj -> System.ServiceModel.Channels.Message
Public MustOverride Function ToMessage (typedMessage As Object) As Message

Parameters

typedMessage
Object

A typed message.

Returns

A Message instance.

Applies to

ToMessage(Object, MessageVersion)

Source:
TypedMessageConverter.cs
Source:
TypedMessageConverter.cs
Source:
TypedMessageConverter.cs

Creates a Message instance from the specified typed message using the specified version.

public:
 abstract System::ServiceModel::Channels::Message ^ ToMessage(System::Object ^ typedMessage, System::ServiceModel::Channels::MessageVersion ^ version);
public abstract System.ServiceModel.Channels.Message ToMessage (object typedMessage, System.ServiceModel.Channels.MessageVersion version);
abstract member ToMessage : obj * System.ServiceModel.Channels.MessageVersion -> System.ServiceModel.Channels.Message
Public MustOverride Function ToMessage (typedMessage As Object, version As MessageVersion) As Message

Parameters

typedMessage
Object

A typed message.

version
MessageVersion

A MessageVersion that specifies the versions of SOAP and WS-Addressing associated with a message.

Returns

A Message instance.

Applies to