DkmClrType.ResolveMethodName Method

Definition

Resolves a method name belonging to a given class into a DkmClrMethodId.

Location constraint: API must be called from a Monitor component (component level < 100,000).

This API was introduced in Visual Studio 12 RTM (DkmApiVersion.VS12RTM).

public:
 Microsoft::VisualStudio::Debugger::Clr::DkmClrMethodId ResolveMethodName(System::String ^ MethodName, System::Collections::ObjectModel::ReadOnlyCollection<Microsoft::VisualStudio::Debugger::Clr::DkmClrType ^> ^ ParameterTypes);
public Microsoft.VisualStudio.Debugger.Clr.DkmClrMethodId ResolveMethodName (string MethodName, System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.VisualStudio.Debugger.Clr.DkmClrType> ParameterTypes);
public Microsoft.VisualStudio.Debugger.Clr.DkmClrMethodId ResolveMethodName (string MethodName, System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.VisualStudio.Debugger.Clr.DkmClrType>? ParameterTypes);
member this.ResolveMethodName : string * System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.VisualStudio.Debugger.Clr.DkmClrType> -> Microsoft.VisualStudio.Debugger.Clr.DkmClrMethodId
Public Function ResolveMethodName (MethodName As String, ParameterTypes As ReadOnlyCollection(Of DkmClrType)) As DkmClrMethodId

Parameters

MethodName
String

[In] The name of the method.

ParameterTypes
ReadOnlyCollection<DkmClrType>

[In,Optional] Optional array of parameter types.

Returns

[Out] A DkmClrMethodId describing the method.

Applies to