DkmNativeRuntimeInstance.OnDataBreakpointEnabled Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
OnDataBreakpointEnabled(UInt64) | |
OnDataBreakpointEnabled(UInt64, Int32) |
Notifies that a data breakpoint has been enabled. Enabling a data breakpoint means that the corresponding address will now be tracked. If the breakpoint is already enabled, this operation has no effect. Location constraint: API must be called from an IDE component (component level > 100,000). This API was introduced in Visual Studio 15 Update 8 (DkmApiVersion.VS15Update8). |
OnDataBreakpointEnabled(UInt64)
public:
void OnDataBreakpointEnabled(System::UInt64 Address);
public void OnDataBreakpointEnabled (ulong Address);
member this.OnDataBreakpointEnabled : uint64 -> unit
Public Sub OnDataBreakpointEnabled (Address As ULong)
Parameters
- Address
- UInt64
Applies to
OnDataBreakpointEnabled(UInt64, Int32)
Notifies that a data breakpoint has been enabled. Enabling a data breakpoint means that the corresponding address will now be tracked. If the breakpoint is already enabled, this operation has no effect.
Location constraint: API must be called from an IDE component (component level > 100,000).
This API was introduced in Visual Studio 15 Update 8 (DkmApiVersion.VS15Update8).
public:
void OnDataBreakpointEnabled(System::UInt64 Address, int Size);
public void OnDataBreakpointEnabled (ulong Address, int Size);
member this.OnDataBreakpointEnabled : uint64 * int -> unit
Public Sub OnDataBreakpointEnabled (Address As ULong, Size As Integer)
Parameters
- Address
- UInt64
[In] Memory address which is now being tracked by the data breakpoint.
- Size
- Int32
[In] Size being tracked by the data breakpoint.