Método IVsSimpleLibrary2.RemoveBrowseContainer (UInt32, String)

 

Remove um contêiner de procurar que estão sendo procurados pela biblioteca.

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

Sintaxe

int RemoveBrowseContainer(
    uint dwReserved,
    string pszLibName
)
int RemoveBrowseContainer(
    unsigned int dwReserved,
    String^ pszLibName
)
abstract RemoveBrowseContainer : 
        dwReserved:uint32 *
        pszLibName:string -> int
Function RemoveBrowseContainer (
    dwReserved As UInteger,
    pszLibName As String
) As Integer

Parâmetros

  • dwReserved
    [in] Reservado.Defina este parâmetro como null.
  • pszLibName
    [in] Uma string contendo o nome da biblioteca.

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 IVsSimpleLibrary2::RemoveBrowseContainer(
   [in] DWORD   dwReserved, 
   [in] LPCWSTR pszLibName
);

Parar de procurar o componente identificado pela pszLibName.O pszLibName parâmetro é equivalente ao que é retornado por meio do GetText método para este contêiner de procurar.Este método só é significativo para bibliotecas registradas com contêineres de navegação global.

Consulte também

Interface IVsSimpleLibrary2
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo