IDkmLanguageInstructionDecoder.GetMethodName Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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::DkmLanguageInstructionAddress ^ languageInstructionAddress, Microsoft::VisualStudio::Debugger::Evaluation::DkmVariableInfoFlags argumentFlags);
public:
Platform::String ^ GetMethodName(Microsoft::VisualStudio::Debugger::Evaluation::DkmLanguageInstructionAddress ^ languageInstructionAddress, Microsoft::VisualStudio::Debugger::Evaluation::DkmVariableInfoFlags argumentFlags);
std::wstring GetMethodName(Microsoft::VisualStudio::Debugger::Evaluation::DkmLanguageInstructionAddress const & languageInstructionAddress, Microsoft::VisualStudio::Debugger::Evaluation::DkmVariableInfoFlags argumentFlags);
public string GetMethodName (Microsoft.VisualStudio.Debugger.Evaluation.DkmLanguageInstructionAddress languageInstructionAddress, Microsoft.VisualStudio.Debugger.Evaluation.DkmVariableInfoFlags argumentFlags);
abstract member GetMethodName : Microsoft.VisualStudio.Debugger.Evaluation.DkmLanguageInstructionAddress * Microsoft.VisualStudio.Debugger.Evaluation.DkmVariableInfoFlags -> string
Public Function GetMethodName (languageInstructionAddress As DkmLanguageInstructionAddress, argumentFlags As DkmVariableInfoFlags) As String
Parameters
- languageInstructionAddress
- DkmLanguageInstructionAddress
[In] Pairing between an instruction address and the language that should be used to decode it.
- 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.