Share via


DkmNativeRuntimeInstance.OnDataBreakpointDisabled Method

Definition

Overloads

OnDataBreakpointDisabled(UInt64)
OnDataBreakpointDisabled(UInt64, Int32)

Notifies that a data breakpoint has been disabled. Disabling a data breakpoint means that the corresponding address will no longer be tracked. If the breakpoint is already disabled, 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).

OnDataBreakpointDisabled(UInt64)

public:
 void OnDataBreakpointDisabled(System::UInt64 Address);
public void OnDataBreakpointDisabled (ulong Address);
member this.OnDataBreakpointDisabled : uint64 -> unit
Public Sub OnDataBreakpointDisabled (Address As ULong)

Parameters

Address
UInt64

Applies to

OnDataBreakpointDisabled(UInt64, Int32)

Notifies that a data breakpoint has been disabled. Disabling a data breakpoint means that the corresponding address will no longer be tracked. If the breakpoint is already disabled, 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 OnDataBreakpointDisabled(System::UInt64 Address, int Size);
public void OnDataBreakpointDisabled (ulong Address, int Size);
member this.OnDataBreakpointDisabled : uint64 * int -> unit
Public Sub OnDataBreakpointDisabled (Address As ULong, Size As Integer)

Parameters

Address
UInt64

[In] Memory address which is no longer being tracked by a data breakpoint.

Size
Int32

[In] Size being tracked by the data breakpoint.

Applies to