Método IVsParseCommandLine.ValidateParamCount (Int32, Int32)
Publicado: abril de 2016
Verifique se que a contagem de parâmetros está em um intervalo específico.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int ValidateParamCount(
int cParamsMin,
int cParamsMax
)
int ValidateParamCount(
int cParamsMin,
int cParamsMax
)
abstract ValidateParamCount :
cParamsMin:int *
cParamsMax:int -> int
Function ValidateParamCount (
cParamsMin As Integer,
cParamsMax As Integer
) As Integer
Parâmetros
- cParamsMin
[in] O número mínimo de parâmetros.
- cParamsMax
[in] O número máximo de parâmetros.
Valor de retorno
Type: System.Int32
Retorna se a contagem de parâmetros está dentro do intervalo, S_OK.Retorna E_FAIL contrário.
Comentários
COM assinatura
De vsshell.idl:
HRESULT IVsParseCommandLine::ValidateParamCount(
[in] int cParamsMin,
[in] int cParamsMax
);
Consulte também
Interface IVsParseCommandLine
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo