NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IMessageFormatter.Read

This method is used to read the contents from the given message and create an object.

[Visual Basic]
Function Read( _
   ByVal message As Message _
) As Object
[C#]
object Read(
   Message message
);
[C++]
Object* Read(
   Message* message
) = 0;
[JScript]
function Read(
   message : Message
) : Object;

Parameters

message
the message to deserialize the object from.

Return Value

the object deserialized from the message.

See Also

IMessageFormatter Interface | IMessageFormatter Members | System.Messaging Namespace