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

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

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

Parameters

reqMsg
Request Message.
bCliSide
True if client side.
bAsync
True if async call.

See Also

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