DkmSuccessEvaluationResult.GetDataBreakpointDisplayName Method

Definition

Overloads

GetDataBreakpointDisplayName()

Gets the data breakpoint display name for the evaluation result.

Location constraint: API must be called from an IDE component (component level > 100,000).

This API was introduced in Visual Studio 16 RTM (DkmApiVersion.VS16RTM).

GetDataBreakpointDisplayName(DkmWorkList, DkmCompletionRoutine<DkmGetDataBreakpointDisplayNameAsyncResult>)

Gets the data breakpoint display name for the evaluation result.

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 16 RTM (DkmApiVersion.VS16RTM).

GetDataBreakpointDisplayName()

Gets the data breakpoint display name for the evaluation result.

Location constraint: API must be called from an IDE component (component level > 100,000).

This API was introduced in Visual Studio 16 RTM (DkmApiVersion.VS16RTM).

public:
 System::String ^ GetDataBreakpointDisplayName();
public string GetDataBreakpointDisplayName ();
member this.GetDataBreakpointDisplayName : unit -> string
Public Function GetDataBreakpointDisplayName () As String

Returns

[Out] The data breakpoint display name.

Applies to

GetDataBreakpointDisplayName(DkmWorkList, DkmCompletionRoutine<DkmGetDataBreakpointDisplayNameAsyncResult>)

Gets the data breakpoint display name for the evaluation result.

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 16 RTM (DkmApiVersion.VS16RTM).

public:
 void GetDataBreakpointDisplayName(Microsoft::VisualStudio::Debugger::DkmWorkList ^ WorkList, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::Evaluation::DkmGetDataBreakpointDisplayNameAsyncResult> ^ CompletionRoutine);
public void GetDataBreakpointDisplayName (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Evaluation.DkmGetDataBreakpointDisplayNameAsyncResult> CompletionRoutine);
member this.GetDataBreakpointDisplayName : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Evaluation.DkmGetDataBreakpointDisplayNameAsyncResult> -> unit
Public Sub GetDataBreakpointDisplayName (WorkList As DkmWorkList, CompletionRoutine As DkmCompletionRoutine(Of DkmGetDataBreakpointDisplayNameAsyncResult))

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

CompletionRoutine
DkmCompletionRoutine<DkmGetDataBreakpointDisplayNameAsyncResult>

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