Partilhar via


Método IVsParseCommandLine.GetSwitchValue (Int32, String)

 

Publicado: abril de 2016

Obtém o valor analisado de um switch pelo índice.

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

Sintaxe

int GetSwitchValue(
    int iSwitchIndex,
    out string pbstrValue
)
int GetSwitchValue(
    int iSwitchIndex,
    [OutAttribute] String^% pbstrValue
)
abstract GetSwitchValue : 
        iSwitchIndex:int *
        pbstrValue:string byref -> int
Function GetSwitchValue (
    iSwitchIndex As Integer,
    <OutAttribute> ByRef pbstrValue As String
) As Integer

Parâmetros

  • iSwitchIndex
    [in] Índice do valor de opção para retornar.
  • pbstrValue
    [out] Ponteiro para uma seqüência de caracteres que contém o valor da opção.

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 IVsParseCommandLine::GetSwitchValue(
   [in] int iSwitchIndex, 
   [out, retval] BSTR* pbstrValue
);

Consulte também

Interface IVsParseCommandLine
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo