NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ICorPublishProcessEnum

Interface for enumerating a list of processes based on the filter criteria specified when the enumerator object was created.

IDL Declaration.

interface ICorPublishProcessEnum : IUnknown
{
   HRESULT Next([in] ULONG celt, [out, size_is(celt), length_is(*pceltFetched)], ICorPublishProcess *objects[], [out] ULONG *pceltFetched);
};

Next

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

Gets the requested number of processes that are next in the process list represented by this enumerator.

Parameter Description
celt The number of processes requested.
objects Array of pointers to process objects to receive the returned process objects.
pceltFetched The actual number of processes fetched.