IDynamicMessageSink.ProcessMessageStart(IMessage, Boolean, Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates that a call is starting.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
void ProcessMessageStart(System::Runtime::Remoting::Messaging::IMessage ^ reqMsg, bool bCliSide, bool bAsync);
public void ProcessMessageStart (System.Runtime.Remoting.Messaging.IMessage reqMsg, bool bCliSide, bool bAsync);
[System.Security.SecurityCritical]
public void ProcessMessageStart (System.Runtime.Remoting.Messaging.IMessage reqMsg, bool bCliSide, bool bAsync);
abstract member ProcessMessageStart : System.Runtime.Remoting.Messaging.IMessage * bool * bool -> unit
[<System.Security.SecurityCritical>]
abstract member ProcessMessageStart : System.Runtime.Remoting.Messaging.IMessage * bool * bool -> unit
Public Sub ProcessMessageStart (reqMsg As IMessage, bCliSide As Boolean, bAsync As Boolean)
Parameters
- reqMsg
- IMessage
A request message.
- bCliSide
- Boolean
A value of true
if the method is invoked on the client side and false
if the method is on the server side.
- bAsync
- Boolean
A value of true
if this is an asynchronic call and false
if it is a synchronic call.
- Attributes
Remarks
The Boolean parameters indicate whether the sink is located on the client side or the server side and whether the call is using the AsyncProcessMessage method.