DkmSuccessEvaluationResult.GetDataBreakpointInfo Method

Definition

Overloads

GetDataBreakpointInfo(String)

Returns the data breakpoint information related to the evaluation result, if valid.

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).

GetDataBreakpointInfo(DkmWorkList, DkmCompletionRoutine<DkmGetDataBreakpointInfoAsyncResult>)

Returns the data breakpoint information related to the evaluation result, if valid.

This method will append a new work item to the specified work list, and return once the work item has been appended. The actual processing of the work item is asynchronous. The caller will be notified that the request is complete through the completion routine.

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).

GetDataBreakpointInfo(String)

Returns the data breakpoint information related to the evaluation result, if valid.

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:
 Microsoft::VisualStudio::Debugger::Evaluation::DkmDataBreakpointInfo GetDataBreakpointInfo([Runtime::InteropServices::Out] System::String ^ % Error);
public Microsoft.VisualStudio.Debugger.Evaluation.DkmDataBreakpointInfo GetDataBreakpointInfo (out string Error);
member this.GetDataBreakpointInfo : string -> Microsoft.VisualStudio.Debugger.Evaluation.DkmDataBreakpointInfo
Public Function GetDataBreakpointInfo (ByRef Error As String) As DkmDataBreakpointInfo

Parameters

Error
String

[Out,Optional] If the operation failed, this indicates the reason why. This value should be null if the operation succeeded.

Returns

[Out] The data breakpoint information.

Applies to

GetDataBreakpointInfo(DkmWorkList, DkmCompletionRoutine<DkmGetDataBreakpointInfoAsyncResult>)

Returns the data breakpoint information related to the evaluation result, if valid.

This method will append a new work item to the specified work list, and return once the work item has been appended. The actual processing of the work item is asynchronous. The caller will be notified that the request is complete through the completion routine.

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 GetDataBreakpointInfo(Microsoft::VisualStudio::Debugger::DkmWorkList ^ WorkList, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::Evaluation::DkmGetDataBreakpointInfoAsyncResult> ^ CompletionRoutine);
public void GetDataBreakpointInfo (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Evaluation.DkmGetDataBreakpointInfoAsyncResult> CompletionRoutine);
member this.GetDataBreakpointInfo : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Evaluation.DkmGetDataBreakpointInfoAsyncResult> -> unit
Public Sub GetDataBreakpointInfo (WorkList As DkmWorkList, CompletionRoutine As DkmCompletionRoutine(Of DkmGetDataBreakpointInfoAsyncResult))

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

CompletionRoutine
DkmCompletionRoutine<DkmGetDataBreakpointInfoAsyncResult>

Routine to fire when the request is complete. If the request is successfully appended to the work list, this will always fire (including when the operation is canceled). This will never fire if appending the work item fails.

Applies to