IVsDebugger.AdviseDebuggerEvents 方法
使用由调试器事件的客户端访问通知。
命名空间: Microsoft.VisualStudio.Shell.Interop
程序集: Microsoft.VisualStudio.Shell.Interop(在 Microsoft.VisualStudio.Shell.Interop.dll 中)
语法
声明
Function AdviseDebuggerEvents ( _
pSink As IVsDebuggerEvents, _
<OutAttribute> ByRef pdwCookie As UInteger _
) As Integer
int AdviseDebuggerEvents(
IVsDebuggerEvents pSink,
out uint pdwCookie
)
参数
- pSink
类型:Microsoft.VisualStudio.Shell.Interop.IVsDebuggerEvents
[in] 为接收事件通知的 IVsDebuggerEvents 接口的指针。
- pdwCookie
类型:System.UInt32%
[out] Cookie 返回标识此特定接收接口。客户端在调用需要保存 cookie 并将其添加到 UnadviseDebuggerEvents。
返回值
类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。
备注
COM 签名
从 vsshell.idl:
HRESULT IVsDebugger::AdviseDebuggerEvents(
[in] IVsDebuggerEvents *psink,
[out] VSCOOKIE *pdwCookie
);
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。