IVsEnumSearchProviders.Next(UInt32, IVsSearchProvider[], UInt32) 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.
Retrieves a specified number of search providers in the enumeration sequence.
public:
int Next(System::UInt32 celt, cli::array <Microsoft::VisualStudio::Shell::Interop::IVsSearchProvider ^> ^ rgelt, [Runtime::InteropServices::Out] System::UInt32 % pceltFetched);
int Next(unsigned int celt, std::Array <Microsoft::VisualStudio::Shell::Interop::IVsSearchProvider const &> const & rgelt, [Runtime::InteropServices::Out] unsigned int & pceltFetched);
public int Next (uint celt, Microsoft.VisualStudio.Shell.Interop.IVsSearchProvider[] rgelt, out uint pceltFetched);
abstract member Next : uint32 * Microsoft.VisualStudio.Shell.Interop.IVsSearchProvider[] * uint32 -> int
Public Function Next (celt As UInteger, rgelt As IVsSearchProvider(), ByRef pceltFetched As UInteger) As Integer
Parameters
- celt
- UInt32
[in] The requested number of search providers to retrieve.
- rgelt
- IVsSearchProvider[]
[out, size_is(celt), length_is(*pceltFetched)] The list of IVsEnumSearchProviders objects that have been retrieved.
- pceltFetched
- UInt32
[out] Pointer to the actual number of search providers supplied in rgelt
. Returns null if celt
is one.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.