Método IVsParseCommandLine.GetParam (Int32, String)
Publicado: abril de 2016
Retorna um parâmetro pelo índice.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int GetParam(
int iIndex,
out string pbstrParam
)
int GetParam(
int iIndex,
[OutAttribute] String^% pbstrParam
)
abstract GetParam :
iIndex:int *
pbstrParam:string byref -> int
Function GetParam (
iIndex As Integer,
<OutAttribute> ByRef pbstrParam As String
) As Integer
Parâmetros
- iIndex
[in] Índice para o parâmetro para retornar.
- pbstrParam
[out] Ponteiro para uma seqüência de caracteres que contém o parâmetro.
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::GetParam(
[in] int iIndex,
[out, retval] BSTR* pbstrParam
);
Consulte também
Interface IVsParseCommandLine
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo