Partilhar via


Método IVsParseCommandLine.QuoteParam (String, String)

 

Publicado: abril de 2016

Citar um parâmetro o apropriadamente caracteres de escape e de seqüência de caracteres dentro da seqüência.

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

Sintaxe

int QuoteParam(
    string szParam,
    out string pbstrQuotedParam
)
int QuoteParam(
    String^ szParam,
    [OutAttribute] String^% pbstrQuotedParam
)
abstract QuoteParam : 
        szParam:string *
        pbstrQuotedParam:string byref -> int
Function QuoteParam (
    szParam As String,
    <OutAttribute> ByRef pbstrQuotedParam As String
) As Integer

Parâmetros

  • szParam
    [in] A seqüência de caracteres que contém o parâmetro para a cotação.
  • pbstrQuotedParam
    [out] Ponteiro para a seqüência de caracteres do parâmetro entre aspas.

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::QuoteParam(
   [in] LPCOLESTR szParam, 
   [out, retval] BSTR* pbstrQuotedParam
);

Consulte também

Interface IVsParseCommandLine
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo