IDispatchMessageFormatter Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines methods that deserialize request messages and serialize response messages in a service application.
public interface class IDispatchMessageFormatter
public interface IDispatchMessageFormatter
type IDispatchMessageFormatter = interface
Public Interface IDispatchMessageFormatter
Examples
For a complete example, see Operation Formatter and Operation Selector.
Remarks
Implement the IDispatchMessageFormatter interface to create a formatter extension that controls the serialization of parameters into a message and the deserialization from a message into parameters in a service application. To insert the custom formatter into the service application, assign the IDispatchMessageFormatter object to the Formatter property using a behavior.
Methods
DeserializeRequest(Message, Object[]) |
Deserializes a message into an array of parameters. |
SerializeReply(MessageVersion, Object[], Object) |
Serializes a reply message from a specified message version, array of parameters, and a return value. |