Método IVsLibrary2.GetList2 (UInt32, UInt32, VSOBSEARCHCRITERIA2 , IVsObjectList2)
Retorna a lista solicitada de símbolos, como um IVsObjectList interface.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (em Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Sintaxe
int GetList2(
uint ListType,
uint flags,
VSOBSEARCHCRITERIA2[] pobSrch,
out IVsObjectList2 ppIVsObjectList2
)
int GetList2(
unsigned int ListType,
unsigned int flags,
array<VSOBSEARCHCRITERIA2>^ pobSrch,
[OutAttribute] IVsObjectList2^% ppIVsObjectList2
)
abstract GetList2 :
ListType:uint32 *
flags:uint32 *
pobSrch:VSOBSEARCHCRITERIA2[] *
ppIVsObjectList2:IVsObjectList2 byref -> int
Function GetList2 (
ListType As UInteger,
flags As UInteger,
pobSrch As VSOBSEARCHCRITERIA2(),
<OutAttribute> ByRef ppIVsObjectList2 As IVsObjectList2
) As Integer
Parâmetros
- ListType
[in] Especifica o tipo de lista.Valores são obtidas a partir do _LIB_LISTTYPE2 enumeração.
- flags
[in] Especifica sinalizadores.Valores são obtidas a partir do _LIB_LISTFLAGS enumeração.
- pobSrch
[in] Especifica um ponteiro para uma VSOBSEARCHCRITERIA2 estrutura.
- ppIVsObjectList2
[out] Ponteiro para uma IVsObjectList interface.
Valor de retorno
Type: System.Int32
Se o método for bem-sucedido, ele retorna S_OK.Se ele falhar, ele retorna um código de erro.
Comentários
COM assinatura
De vsshell80.idl:
HRESULT IVsLibrary2::GetList2(
[in] LIB_LISTTYPE2 ListType,
[in] LIB_LISTFLAGS Flags,
[in] VSOBSEARCHCRITERIA2 *pobSrch,
[out, retval] IVsObjectList2 **ppIVsObjectList2
);
Esse método retorna um IVsObjectList interface.O tipo da lista de objetos para retornar é especificado em ListType com valores da _LIB_LISTTYPE2 enumeração.Os atributos da lista de objetos são especificados em flags com valores da _LIB_LISTFLAGS enumeração.Os membros a VSOBSEARCHCRITERIA2 estrutura, conforme indicado na ppList parâmetro, especifique os critérios para localizar a lista de objetos.
Consulte também
Interface IVsLibrary2
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo