Partilhar via


Método IVsXMLMemberIndexService.CreateXMLMemberIndex (String, IVsXMLMemberIndex)

 

Cria um objeto de índice do membro para os metadados de dado binário.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)

Sintaxe

int CreateXMLMemberIndex(
    string pszBinaryName,
    out IVsXMLMemberIndex ppIndex
)
int CreateXMLMemberIndex(
    String^ pszBinaryName,
    [OutAttribute] IVsXMLMemberIndex^% ppIndex
)
abstract CreateXMLMemberIndex : 
        pszBinaryName:string *
        ppIndex:IVsXMLMemberIndex byref -> int
Function CreateXMLMemberIndex (
    pszBinaryName As String,
    <OutAttribute> ByRef ppIndex As IVsXMLMemberIndex
) As Integer

Parâmetros

  • pszBinaryName
    [in] Ponteiro para uma seqüência de caracteres que contém o nome totalmente qualificado do arquivo metadados.
  • ppIndex
    [out] Ponteiro para uma IVsXMLMemberIndex interface fornecendo um índice aos metadados.

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 vsshell.idl:

HRESULT IVsXMLMemberIndexService::CreateXMLMemberIndex(
   [in] LPCOLESTR pszBinaryName, 
   [out] IVsXMLMemberIndex **ppIndex
);

Consulte também

Interface IVsXMLMemberIndexService
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo