DkmLanguageInstructionAddress.GetMethodName Method

Definition

Overloads

GetMethodName(DkmVariableInfoFlags)

Provides a text representation for a method symbol. This is used when describing an address in the UI, for example the 'Function' column in the breakpoints window.

GetMethodName(DkmWorkList, DkmVariableInfoFlags, DkmCompletionRoutine<DkmGetMethodNameAsyncResult>)

Provides a text representation for a method symbol. This is used when describing an address in the UI, for example the 'Function' column in the breakpoints window.

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.

GetMethodName(DkmVariableInfoFlags)

Provides a text representation for a method symbol. This is used when describing an address in the UI, for example the 'Function' column in the breakpoints window.

public:
 System::String ^ GetMethodName(Microsoft::VisualStudio::Debugger::Evaluation::DkmVariableInfoFlags ArgumentFlags);
public:
 Platform::String ^ GetMethodName(Microsoft::VisualStudio::Debugger::Evaluation::DkmVariableInfoFlags ArgumentFlags);
std::wstring GetMethodName(Microsoft::VisualStudio::Debugger::Evaluation::DkmVariableInfoFlags ArgumentFlags);
public string GetMethodName (Microsoft.VisualStudio.Debugger.Evaluation.DkmVariableInfoFlags ArgumentFlags);
member this.GetMethodName : Microsoft.VisualStudio.Debugger.Evaluation.DkmVariableInfoFlags -> string
Public Function GetMethodName (ArgumentFlags As DkmVariableInfoFlags) As String

Parameters

ArgumentFlags
DkmVariableInfoFlags

[In] Flags to indicate what information about the arguments should be included in the method name. As parameter values cannot be obtained without a stack frame and a stack frame is not available here, the "Values" flag will never be present.

Returns

[Out] Language's representation of the name of this method.

Applies to

GetMethodName(DkmWorkList, DkmVariableInfoFlags, DkmCompletionRoutine<DkmGetMethodNameAsyncResult>)

Provides a text representation for a method symbol. This is used when describing an address in the UI, for example the 'Function' column in the breakpoints window.

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.

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

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

ArgumentFlags
DkmVariableInfoFlags

[In] Flags to indicate what information about the arguments should be included in the method name. As parameter values cannot be obtained without a stack frame and a stack frame is not available here, the "Values" flag will never be present.

CompletionRoutine
DkmCompletionRoutine<DkmGetMethodNameAsyncResult>

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