IDkmClrTypeResolver.ResolveTypeName Method

Definition

Resolves a type name into a type. If the type is generic, the generic parameters will not be instantiated.

public:
 Microsoft::VisualStudio::Debugger::Clr::DkmClrType ^ ResolveTypeName(Microsoft::VisualStudio::Debugger::Clr::DkmClrModuleInstance ^ clrModuleInstance, System::String ^ typeName, System::Collections::ObjectModel::ReadOnlyCollection<Microsoft::VisualStudio::Debugger::Clr::DkmClrType ^> ^ genericParameters);
public Microsoft.VisualStudio.Debugger.Clr.DkmClrType ResolveTypeName (Microsoft.VisualStudio.Debugger.Clr.DkmClrModuleInstance clrModuleInstance, string typeName, System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.VisualStudio.Debugger.Clr.DkmClrType> genericParameters);
public Microsoft.VisualStudio.Debugger.Clr.DkmClrType ResolveTypeName (Microsoft.VisualStudio.Debugger.Clr.DkmClrModuleInstance clrModuleInstance, string typeName, System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.VisualStudio.Debugger.Clr.DkmClrType>? genericParameters);
abstract member ResolveTypeName : Microsoft.VisualStudio.Debugger.Clr.DkmClrModuleInstance * string * System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.VisualStudio.Debugger.Clr.DkmClrType> -> Microsoft.VisualStudio.Debugger.Clr.DkmClrType
Public Function ResolveTypeName (clrModuleInstance As DkmClrModuleInstance, typeName As String, genericParameters As ReadOnlyCollection(Of DkmClrType)) As DkmClrType

Parameters

clrModuleInstance
DkmClrModuleInstance

[In] 'DkmClrModuleInstance' is used for modules which are loaded into the Common Language Runtime.

typeName
String

[In] The name of the type.

genericParameters
ReadOnlyCollection<DkmClrType>

[In,Optional] If the type is generic, specifies the generic parameters for the type.

Returns

[Out] A DkmClrType describing the type.

Applies to