Share via


IVsCommonMessagePumpClientEvents.OnHandleSignaled(UInt32, Boolean) Method

Definition

The event is raised when a handle is signaled. Client implementations should decide if the wait can continue based on which handle(s) have been signaled so far.

public:
 int OnHandleSignaled(System::UInt32 nHandle, [Runtime::InteropServices::Out] bool % pfContinue);
int OnHandleSignaled(unsigned int nHandle, [Runtime::InteropServices::Out] bool & pfContinue);
public int OnHandleSignaled (uint nHandle, out bool pfContinue);
abstract member OnHandleSignaled : uint32 * bool -> int
Public Function OnHandleSignaled (nHandle As UInteger, ByRef pfContinue As Boolean) As Integer

Parameters

nHandle
UInt32

The handle.

pfContinue
Boolean

If false, tells the common message pump to quit and return S_OK.

Returns

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Applies to