AssemblyBuilder.GetType(String, Boolean, Boolean) 方法

定义

从已在当前 AssemblyBuilder 中定义并创建的类型中获取指定的类型。

public:
 override Type ^ GetType(System::String ^ name, bool throwOnError, bool ignoreCase);
public override Type? GetType (string name, bool throwOnError, bool ignoreCase);
public override Type GetType (string name, bool throwOnError, bool ignoreCase);
override this.GetType : string * bool * bool -> Type
Public Overrides Function GetType (name As String, throwOnError As Boolean, ignoreCase As Boolean) As Type

参数

name
String

要搜索的类型的名称。

throwOnError
Boolean

若要在找不到该类型时引发异常,则为 true;否则为 false

ignoreCase
Boolean

若要在搜索时忽略类型名称的大小写,则为 true;否则为 false

返回

如果找不到或尚未创建该类型,则为指定的类型或 null

注解

在通过调用 方法创建类型之前,找不到该类型 CreateType

适用于