4 overrides of GetType
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeModuleBuilder.cs (1)
555
public override Type?
GetType
(string className, bool throwOnError, bool ignoreCase)
src\System\Reflection\RuntimeModule.cs (1)
393
public override Type?
GetType
(
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingModule.cs (1)
119
public override Type?
GetType
(string className, bool throwOnError, bool ignoreCase)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Modules\RoModule.cs (1)
93
public sealed override Type?
GetType
(string className, bool throwOnError, bool ignoreCase)
3 references to GetType
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Reflection\Module.cs (2)
83
public virtual Type? GetType(string className) =>
GetType
(className, throwOnError: false, ignoreCase: false);
85
public virtual Type? GetType(string className, bool ignoreCase) =>
GetType
(className, throwOnError: false, ignoreCase: ignoreCase);
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingModule.cs (1)
121
return UnderlyingModule.
GetType
(className, throwOnError, ignoreCase);