4 overrides of GetType
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeModuleBuilder.cs (1)
555public override Type? GetType(string className, bool throwOnError, bool ignoreCase)
src\System\Reflection\RuntimeModule.cs (1)
393public override Type? GetType(
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingModule.cs (1)
119public override Type? GetType(string className, bool throwOnError, bool ignoreCase)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Modules\RoModule.cs (1)
93public 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)
83public virtual Type? GetType(string className) => GetType(className, throwOnError: false, ignoreCase: false); 85public virtual Type? GetType(string className, bool ignoreCase) => GetType(className, throwOnError: false, ignoreCase: ignoreCase);
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingModule.cs (1)
121return UnderlyingModule.GetType(className, throwOnError, ignoreCase);