IVsCommonMessagePumpClientEvents.OnHandleSignaled(UInt32, 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.
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.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.