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!

BinaryMessageFormatter.Read

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

[Visual Basic]
Overridable Public Function Read( _
   ByVal message As Message _
) As Object
[C#]
public virtual object Read(
   Message message
);
[C++]
public: virtual Object* Read(
   Message* message
);
[JScript]
public function Read(
   message : Message
) : Object;

Parameters

message
the message to deserialize the object from.

Return Value

the object deserialized from the message.

See Also

BinaryMessageFormatter Class | BinaryMessageFormatter Members | System.Messaging Namespace