Skip to content

Latest commit

 

History

History
54 lines (42 loc) · 1.51 KB

icordebugprocessenum-next-method.md

File metadata and controls

54 lines (42 loc) · 1.51 KB
description title ms.date api_name api_location api_type f1_keywords helpviewer_keywords ms.assetid topic_type
Learn more about: ICorDebugProcessEnum::Next Method
ICorDebugProcessEnum::Next Method
03/30/2017
ICorDebugProcessEnum.Next
mscordbi.dll
COM
ICorDebugProcessEnum::Next
Next method, ICorDebugProcessEnum interface [.NET Framework debugging]
ICorDebugProcessEnum::Next method [.NET Framework debugging]
4ac7077c-8d88-49c4-b360-b3af0c541c63
apiref

ICorDebugProcessEnum::Next Method

Gets the specified number of ICorDebugProcess instances from the enumeration, starting at the current position.

Syntax

HRESULT Next (  
    [in]  ULONG celt,  
    [out, size_is(celt), length_is(*pceltFetched)]  
        ICorDebugProcess *processes[],  
    [out] ULONG *pceltFetched  
);  

Parameters

celt
[in] The number of ICorDebugProcess instances to be retrieved.

processes
[out] An array of pointers, each of which points to an ICorDebugProcess object that represents a process.

pceltFetched
[out] Pointer to the number of ICorDebugProcess instances actually returned. This value may be null if celt is one.

Requirements

Platforms: See System Requirements.

Header: CorDebug.idl, CorDebug.h

Library: CorGuids.lib

.NET Framework Versions: [!INCLUDEnet_current_v10plus]