Επεξεργασία

Κοινή χρήση μέσω


ResXDataNode.GetValueTypeName Method

Definition

Retrieves the type name for the value.

Overloads

GetValueTypeName(ITypeResolutionService)

Retrieves the type name for the value by using the specified type resolution service.

GetValueTypeName(AssemblyName[])

Retrieves the type name for the value by examining the specified assemblies.

GetValueTypeName(ITypeResolutionService)

Retrieves the type name for the value by using the specified type resolution service.

public:
 System::String ^ GetValueTypeName(System::ComponentModel::Design::ITypeResolutionService ^ typeResolver);
public string GetValueTypeName (System.ComponentModel.Design.ITypeResolutionService typeResolver);
public string? GetValueTypeName (System.ComponentModel.Design.ITypeResolutionService? typeResolver);
member this.GetValueTypeName : System.ComponentModel.Design.ITypeResolutionService -> string
Public Function GetValueTypeName (typeResolver As ITypeResolutionService) As String

Parameters

typeResolver
ITypeResolutionService

The type resolution service to use to locate a converter for this type.

Returns

A string that represents the fully qualified name of the type.

Exceptions

The corresponding type could not be found.

Applies to

GetValueTypeName(AssemblyName[])

Retrieves the type name for the value by examining the specified assemblies.

public:
 System::String ^ GetValueTypeName(cli::array <System::Reflection::AssemblyName ^> ^ names);
public string GetValueTypeName (System.Reflection.AssemblyName[] names);
public string? GetValueTypeName (System.Reflection.AssemblyName[]? names);
member this.GetValueTypeName : System.Reflection.AssemblyName[] -> string
Public Function GetValueTypeName (names As AssemblyName()) As String

Parameters

names
AssemblyName[]

The assemblies to examine for the type.

Returns

A string that represents the fully qualified name of the type.

Exceptions

The corresponding type could not be found.

Applies to