Assembly::GetType Method (String^, Boolean, Boolean)
Gets the Type object with the specified name in the assembly instance, with the options of ignoring the case, and of throwing an exception if the type is not found.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- name
-
Type:
System::String^
The full name of the type.
- throwOnError
-
Type:
System::Boolean
true to throw an exception if the type is not found; false to return null.
- ignoreCase
-
Type:
System::Boolean
true to ignore the case of the type name; otherwise, false.
| Exception | Condition |
|---|---|
| ArgumentException | name is invalid. -or- The length of name exceeds 1024 characters. |
| ArgumentNullException | name is null. |
| TypeLoadException | throwOnError is true, and the type cannot be found. |
| FileNotFoundException | name requires a dependent assembly that could not be found. |
| FileLoadException | name requires a dependent assembly that was found but could not be loaded. -or- The current assembly was loaded into the reflection-only context, and name requires a dependent assembly that was not preloaded. |
| BadImageFormatException | name requires a dependent assembly, but the file is not a valid assembly. -or- name requires a dependent assembly which was compiled for a version of the runtime later than the currently loaded version. |
This method only searches the current assembly instance. The name parameter includes the namespace but not the assembly. To search other assemblies for a type, use the Type::GetType(String^) method overload, which can optionally include an assembly display name as part of the type name.
Note |
|---|
If the type has been forwarded to another assembly, it is still returned by this method. For information on type forwarding, see Type Forwarding in the Common Language Runtime. |
The throwOnError parameter only affects what happens when the type is not found. It does not affect any other exceptions that might be thrown. In particular, if the type is found but cannot be loaded, TypeLoadException can be thrown even if throwOnError is false.
Available since 10
.NET Framework
Available since 1.1
