Método IVsDebugLaunch.QueryDebugLaunch (UInt32, Int32)
Testa se você pode iniciar o depurador com as opções especificadas.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int QueryDebugLaunch(
uint grfLaunch,
out int pfCanLaunch
)
int QueryDebugLaunch(
unsigned int grfLaunch,
[OutAttribute] int% pfCanLaunch
)
abstract QueryDebugLaunch :
grfLaunch:uint32 *
pfCanLaunch:int byref -> int
Function QueryDebugLaunch (
grfLaunch As UInteger,
<OutAttribute> ByRef pfCanLaunch As Integer
) As Integer
Parâmetros
- grfLaunch
[in] Bit sinalizadores, que representa opções de inicialização, formadas usando valores a partir de __VSDBGLAUNCHFLAGS enumeração.
- pfCanLaunch
[out] Booleano.Definido como true se você pode iniciar o depurador.
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 IVsDebugLaunch::QueryDebugLaunch(
[in] VSDBGLAUNCHFLAGS grfLaunch,
[out] BOOL *pfCanLaunch
);
Consulte também
Interface IVsDebugLaunch
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo