ClientOperation.Formatter Property

Definition

Gets or sets the formatter that serializes objects into messages and deserializes messages into objects.

public:
 property System::ServiceModel::Dispatcher::IClientMessageFormatter ^ Formatter { System::ServiceModel::Dispatcher::IClientMessageFormatter ^ get(); void set(System::ServiceModel::Dispatcher::IClientMessageFormatter ^ value); };
public System.ServiceModel.Dispatcher.IClientMessageFormatter Formatter { get; set; }
member this.Formatter : System.ServiceModel.Dispatcher.IClientMessageFormatter with get, set
Public Property Formatter As IClientMessageFormatter

Property Value

An IClientMessageFormatter implementation.

Remarks

Use the Formatter property to insert a custom IClientMessageFormatter implementation for an operation or modify the current formatter. The use of the formatter can be controlled by the SerializeRequest and DeserializeReply properties.

The IClientMessageFormatter interface defines the SerializeRequest and DeserializeReply methods, which are used to convert a set of object parameters to a message and from a message to a set of return values, respectively.

Applies to