IEnumPackages.Next(UInt32, IVsPackage[], UInt32) Method

Definition

Retrieves the next group of package interfaces (IVsPackage).

public:
 int Next(System::UInt32 celt, cli::array <Microsoft::VisualStudio::Shell::Interop::IVsPackage ^> ^ rgelt, [Runtime::InteropServices::Out] System::UInt32 % pceltFetched);
int Next(unsigned int celt, std::Array <Microsoft::VisualStudio::Shell::Interop::IVsPackage const &> const & rgelt, [Runtime::InteropServices::Out] unsigned int & pceltFetched);
public int Next (uint celt, Microsoft.VisualStudio.Shell.Interop.IVsPackage[] rgelt, out uint pceltFetched);
abstract member Next : uint32 * Microsoft.VisualStudio.Shell.Interop.IVsPackage[] * uint32 -> int
Public Function Next (celt As UInteger, rgelt As IVsPackage(), ByRef pceltFetched As UInteger) As Integer

Parameters

celt
UInt32

[in] Number of package interfaces to return, or zero to indicate a request for all of the objects.

rgelt
IVsPackage[]

[out] An array of IVsPackage objects. Contains pceltFetched objects.

pceltFetched
UInt32

[out] Actual number of package interfaces retrieved.

Returns

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

Remarks

COM Signature

From vsshell.idl:

HRESULT IEnumPackages::Next([in] ULONG celt, [out, size_is(celt), length_is(*pceltFetched)] IVsPackage **rgelt, [out] ULONG *pceltFetched);  

Applies to