IClientAsyncResult

Overview

The IClientAsyncResult interface can be implemented on client implementations to recieve messages from the server asynchonously.

The Message property dispatches the message; you can monitor the state of the dispatched message via the members of the inherited System.IAsyncResult interface. For example: The AsyncDispatch method of the ClientChannel class returns the IClientAsyncResult instance, so you can check the message transmission state through this object.

Location

Properties


Message

Message that is received from the server.

 

property Message: IMessage read;

 

IMessage Message { get; }

 

ReadOnly Property Message() As IMessage