Partilhar via


Método IVsParseCommandLine.GetRawSwitch (Int32, String)

 

Publicado: abril de 2016

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

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

Sintaxe

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

Parâmetros

  • iIndex
    [in] Índice do switch para retornar.
  • pbstrRawSwitch
    [out] Ponteiro para uma seqüência de caracteres que contém a opção raw e não analisada.

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::GetRawSwitch(
   [in] int iIndex, 
   [out, retval] BSTR* pbstrRawSwitch
);

Consulte também

Interface IVsParseCommandLine
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo