PropertyDescriptor.GetTypeFromName(String) 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.
Returns a type using its name.
protected:
Type ^ GetTypeFromName(System::String ^ typeName);
protected Type? GetTypeFromName(string? typeName);
protected Type GetTypeFromName(string typeName);
member this.GetTypeFromName : string -> Type
Protected Function GetTypeFromName (typeName As String) As Type
Parameters
- typeName
- String
The assembly-qualified name of the type to retrieve.
Returns
A Type that matches the given type name, or null
if a match cannot be found.
Remarks
To find the appropriate type, this method first checks the assembly of the type that this PropertyDescriptor references. If it does not find the type in the assembly, it calls Type.GetType.
Applies to
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET