ICorProfilerCallback::RemotingClientReceivingReply Method

Notifies the profiler that the server-side portion of a remoting call has completed and the client is now receiving and about to process the reply.

Syntax

HRESULT RemotingClientReceivingReply(  
    [in] GUID *pCookie,  
    [in] BOOL fIsAsync);

Parameters

pCookie
[in] A value that will correspond with the value provided in ICorProfilerCallback::RemotingServerSendingReply under these conditions:

  • Remoting GUID cookies are active.

  • The channel succeeds in transmitting the message.

  • GUID cookies are active on the server-side process.

This allows easy pairing of remoting calls.

fIsAsync
[in] A value that is true if the call is asynchronous; otherwise, false.

Requirements

Platforms: See System Requirements.

Header: CorProf.idl, CorProf.h

Library: CorGuids.lib

.NET Framework Versions: Available since 2.0

See also