DispatchOperation.Formatter Property

Definition

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

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

Property Value

An IDispatchMessageFormatter implementation.

Remarks

Use the Formatter property to insert a custom IDispatchMessageFormatter implementation for an operation or modify the current formatter. In the case of strongly-typed message operations, the use of the formatter can be controlled by the SerializeReply and DeserializeRequest properties.

The IDispatchMessageFormatter interface defines the SerializeReply and DeserializeRequest 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