IDynamicMessageSink.ProcessMessageFinish(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 returning.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
void ProcessMessageFinish(System::Runtime::Remoting::Messaging::IMessage ^ replyMsg, bool bCliSide, bool bAsync);
public void ProcessMessageFinish (System.Runtime.Remoting.Messaging.IMessage replyMsg, bool bCliSide, bool bAsync);
[System.Security.SecurityCritical]
public void ProcessMessageFinish (System.Runtime.Remoting.Messaging.IMessage replyMsg, bool bCliSide, bool bAsync);
abstract member ProcessMessageFinish : System.Runtime.Remoting.Messaging.IMessage * bool * bool -> unit
[<System.Security.SecurityCritical>]
abstract member ProcessMessageFinish : System.Runtime.Remoting.Messaging.IMessage * bool * bool -> unit
Public Sub ProcessMessageFinish (replyMsg As IMessage, bCliSide As Boolean, bAsync As Boolean)
Parameters
- replyMsg
- IMessage
A reply message.
- bCliSide
- Boolean
A value of true
if the method is invoked on the client side and false
if it is invoked 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.