DkmStackWalkFrame.GetClrGenericParameters Method

Definition

Overloads

GetClrGenericParameters()

Gets the generic parameters for the current stack frame as a list of assembly qualified names.

This API was introduced in Visual Studio 14 RTM (DkmApiVersion.VS14RTM).

GetClrGenericParameters(DkmWorkList, DkmCompletionRoutine<DkmGetClrGenericParametersAsyncResult>)

Gets the generic parameters for the current stack frame as a list of assembly qualified names.

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.

This API was introduced in Visual Studio 14 RTM (DkmApiVersion.VS14RTM).

GetClrGenericParameters()

Gets the generic parameters for the current stack frame as a list of assembly qualified names.

This API was introduced in Visual Studio 14 RTM (DkmApiVersion.VS14RTM).

C++/CX
public:
 Platform::Array <Platform::String ^> ^ GetClrGenericParameters();

Returns

String[]

[Out] The list of assembly qualified names for the type parameters, if any, followed by the method parameters, if any.

Applies to

Visual Studio SDK 2022 and other versions
Product Versions
Visual Studio SDK 2015, 2017, 2019, 2022

GetClrGenericParameters(DkmWorkList, DkmCompletionRoutine<DkmGetClrGenericParametersAsyncResult>)

Gets the generic parameters for the current stack frame as a list of assembly qualified names.

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.

This API was introduced in Visual Studio 14 RTM (DkmApiVersion.VS14RTM).

C++
public:
 void GetClrGenericParameters(Microsoft::VisualStudio::Debugger::DkmWorkList ^ WorkList, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::CallStack::DkmGetClrGenericParametersAsyncResult> ^ CompletionRoutine);

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

CompletionRoutine
DkmCompletionRoutine<DkmGetClrGenericParametersAsyncResult>

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

Visual Studio SDK 2022 and other versions
Product Versions
Visual Studio SDK 2015, 2017, 2019, 2022