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.CanRead

When this method is called, the formatter will attempt to determine if the contents of the message are something the formatter can deal with.

[Visual Basic]
Function CanRead( _
   ByVal message As Message _
) As Boolean
[C#]
bool CanRead(
   Message message
);
[C++]
bool CanRead(
   Message* message
) = 0;
[JScript]
function CanRead(
   message : Message
) : Boolean;

Parameters

message
the message to be inspected.

Return Value

indicates wehter or not the message passed can be read.

See Also

IMessageFormatter Interface | IMessageFormatter Members | System.Messaging Namespace