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

public:
 cli::array <System::String ^> ^ GetClrGenericParameters();
public:
 Platform::Array <Platform::String ^> ^ GetClrGenericParameters();
std::Array <std::wstring const &> GetClrGenericParameters();
public string[] GetClrGenericParameters ();
member this.GetClrGenericParameters : unit -> string[]
Public Function GetClrGenericParameters () As String()

Returns

String[]

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

Applies to

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

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

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