TypedMessageConverter.FromMessage(Message) Method

Definition

Creates a typed message from the specified Message instance.

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

Parameters

message
Message

An untyped message.

Returns

An object that is a typed message.

Remarks

This method takes an untyped Windows Communication Foundation (WCF) message, that is, an instance of Message, and converts it into a typed message, that is, an instance of a type that is annotated by the MessageContractAttribute.

Applies to