BP_RESOLUTION_DATA

描述绑定数据断点的结果。

语法

public struct BP_RESOLUTION_DATA {
    public string bstrDataExpr;
    public string bstrFunc;
    public string bstrImage;
    public uint   dwFlags;
};

成员

bstrDataExpr
已绑定的数据表达式。

bstrFunc
数据断点绑定的函数的名称(如果有)。

bstrImage
数据断点已绑定的模块(例如 MyModule.dll)的名称。

dwFlags
BP_RES_DATA_FLAGS枚举中的值,描述如何实现数据断点。

注解

此结构是BP_RESOLUTION_LOCATION结构的成员,而该结构又是 GetResolutionInfo 方法返回的BP_RESOLUTION_INFO结构的成员

要求

标头:msdbg.h

命名空间:Microsoft.VisualStudio.Debugger.Interop

程序集:Microsoft.VisualStudio.Debugger.Interop.dll

另请参阅