BP_RESOLUTION_DATA

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

typedef struct _BP_RESOLUTION_DATA { 
   BSTR              bstrDataExpr;
   BSTR              bstrFunc;
   BSTR              bstrImage;
   BP_RES_DATA_FLAGS dwFlags;
} 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 结构的成员,又是 IDebugBreakpointResolution2:: GetResolutionInfo 方法返回的 BP_RESOLUTION_INFO 结构的成员。

要求

标题:msdbg.h

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

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

请参见

参考

结构和联合

BP_RESOLUTION_LOCATION

BP_RESOLUTION_INFO

IDebugBreakpointResolution2:: GetResolutionInfo