Share via


DkmClrRuntimeInstance.GetApplyUpdateCapabilities Method

Definition

Overloads

GetApplyUpdateCapabilities(DkmWorkList, DkmCompletionRoutine<DkmGetApplyUpdateCapabilitiesAsyncResult>)

Get capabilities string for the set of Edit and Continue edits supported by the runtime.

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 17 RTM (DkmApiVersion.VS17RTM).

GetApplyUpdateCapabilities()

Get capabilities string for the set of Edit and Continue edits supported by the runtime.

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

This API was introduced in Visual Studio 17 RTM (DkmApiVersion.VS17RTM).

GetApplyUpdateCapabilities(DkmWorkList, DkmCompletionRoutine<DkmGetApplyUpdateCapabilitiesAsyncResult>)

Get capabilities string for the set of Edit and Continue edits supported by the runtime.

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 17 RTM (DkmApiVersion.VS17RTM).

public void GetApplyUpdateCapabilities (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Clr.DkmGetApplyUpdateCapabilitiesAsyncResult> CompletionRoutine);
member this.GetApplyUpdateCapabilities : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Clr.DkmGetApplyUpdateCapabilitiesAsyncResult> -> unit
Public Sub GetApplyUpdateCapabilities (WorkList As DkmWorkList, CompletionRoutine As DkmCompletionRoutine(Of DkmGetApplyUpdateCapabilitiesAsyncResult))

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

CompletionRoutine
DkmCompletionRoutine<DkmGetApplyUpdateCapabilitiesAsyncResult>

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

GetApplyUpdateCapabilities()

Get capabilities string for the set of Edit and Continue edits supported by the runtime.

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

This API was introduced in Visual Studio 17 RTM (DkmApiVersion.VS17RTM).

public System.Collections.ObjectModel.ReadOnlyCollection<string> GetApplyUpdateCapabilities ();
member this.GetApplyUpdateCapabilities : unit -> System.Collections.ObjectModel.ReadOnlyCollection<string>
Public Function GetApplyUpdateCapabilities () As ReadOnlyCollection(Of String)

Returns

[Out] Array of identifiers for the capabilities reported by the target runtime instance.

Applies to