Partilhar via


Método IVsParseCommandLine.GetRawSwitchValue (Int32, String)

 

Publicado: abril de 2016

Retorna o valor bruto e não analisado do switch pelo índice.

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

Sintaxe

int GetRawSwitchValue(
    int iIndex,
    out string pbstrRawSwitchValue
)
int GetRawSwitchValue(
    int iIndex,
    [OutAttribute] String^% pbstrRawSwitchValue
)
abstract GetRawSwitchValue : 
        iIndex:int *
        pbstrRawSwitchValue:string byref -> int
Function GetRawSwitchValue (
    iIndex As Integer,
    <OutAttribute> ByRef pbstrRawSwitchValue As String
) As Integer

Parâmetros

  • iIndex
    [in] Índice do valor de opção para retornar.
  • pbstrRawSwitchValue
    [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::GetRawSwitchValue(
   [in] int iIndex, 
   [out, retval] BSTR* pbstrRawSwitchValue
);

Consulte também

Interface IVsParseCommandLine
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo