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!

IDynamicMessageSink.ProcessMessageFinish

Indicates that a call is returning. The Booleans tell whether we are on the client side or the server side and whether the call is using AsyncProcessMessage.

[Visual Basic]
Sub ProcessMessageFinish( _
   ByVal replyMsg As IMessage, _
   ByVal bCliSide As Boolean, _
   ByVal bAsync As Boolean _
)
[C#]
void ProcessMessageFinish(
   IMessage replyMsg,
   bool bCliSide,
   bool bAsync
);
[C++]
void ProcessMessageFinish(
   IMessage* replyMsg,
   bool bCliSide,
   bool bAsync
) = 0;
[JScript]
function ProcessMessageFinish(
   replyMsg : IMessage,
   bCliSide : Boolean,
   bAsync : Boolean
);

Parameters

replyMsg
Reply Message.
bCliSide
True if client side.
bAsync
True if async call.

See Also

IDynamicMessageSink Interface | IDynamicMessageSink Members | System.Runtime.Remoting Namespace