IVsDebuggableProjectCfg.QueryDebugLaunch 方法
确定调试器是否可以生成指定生成标志的状态。
命名空间: Microsoft.VisualStudio.Shell.Interop
程序集: Microsoft.VisualStudio.Shell.Interop(在 Microsoft.VisualStudio.Shell.Interop.dll 中)
语法
声明
Function QueryDebugLaunch ( _
grfLaunch As UInteger, _
<OutAttribute> ByRef pfCanLaunch As Integer _
) As Integer
int QueryDebugLaunch(
uint grfLaunch,
out int pfCanLaunch
)
参数
- grfLaunch
类型:System.UInt32
[in] 确定条件下启动调试器的标志。有关有效的 grfLaunch 值,请参见 __VSDBGLAUNCHFLAGS。
- pfCanLaunch
类型:System.Int32%
[out] 为设置为 true 的标志的指针,如果调试器可以否则生成和 false 。
返回值
类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。
备注
COM 签名
从 vsshell.idl:
HRESULT IVsDebuggableProjectCfg::QueryDebugLaunch(
[in] VSDBGLAUNCHFLAGS grfLaunch,
[out] BOOL *pfCanLaunch
);
此方法确定调试器是否可以生成,并 生成 菜单项启用。 当 QueryDebugLaunch 设置 pfCanLaunch 到 true 时,并且用户选择 生成 菜单项,该项调用具有相同的 DebugLaunch 用于调用 QueryDebugLaunch的设置标志。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。