IVsEnumDebugName.Next(UInt32, IVsDebugName[], UInt32) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Recupera nomes de depuração da sequência de enumeração.
public:
int Next(System::UInt32 celt, cli::array <Microsoft::VisualStudio::TextManager::Interop::IVsDebugName ^> ^ rgelt, [Runtime::InteropServices::Out] System::UInt32 % pceltFetched);
int Next(unsigned int celt, std::Array <Microsoft::VisualStudio::TextManager::Interop::IVsDebugName const &> const & rgelt, [Runtime::InteropServices::Out] unsigned int & pceltFetched);
public int Next (uint celt, Microsoft.VisualStudio.TextManager.Interop.IVsDebugName[] rgelt, out uint pceltFetched);
abstract member Next : uint32 * Microsoft.VisualStudio.TextManager.Interop.IVsDebugName[] * uint32 -> int
Public Function Next (celt As UInteger, rgelt As IVsDebugName(), ByRef pceltFetched As UInteger) As Integer
Parâmetros
- celt
- UInt32
no O número solicitado de Debugnames a serem recuperados.
- rgelt
- IVsDebugName[]
[out, size_is (celt)] A lista de IVsDebugName objetos que foram recuperados.
- pceltFetched
- UInt32
fora Ponteiro para o número real de regiões ocultas fornecidas em pceltFetched . O chamador desse método pode definir isso como NULL se celt for um.
Retornos
Se o método for bem-sucedido, retornará S_OK. Se falhar, retornará um código de erro.
Comentários
Assinatura COM
De textmgr. idl:
[C++]
HRESULT IVsEnumDebugName::Next(
[in] ULONG celt,
[out, size_is(celt), length_is(*pceltFetched)] IVsDebugName **rgelt,
[out] ULONG *pceltFetched
);