Interface for enumerating a list of application domains in a process.
IDL Declaration.
interface ICorPublishAppDomainEnum : IUnknown { HRESULT Next([in] ULONG celt, [out, size_is(celt), length_is(*pceltFetched)], ICorPublishAppDomain *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 application domains that are next in the application domain list represented by this enumerator.
Parameter | Description |
---|---|
celt | The number of application domains requested. |
objects | Array of pointers to application objects to receive the returned application domain objects. |
pceltFetched | The actual number of application domains fetched. |