10 overrides of GetNestedType
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
455public override Type GetNestedType(string name, BindingFlags bindingAttr)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilderInstantiation.cs (1)
204public override Type GetNestedType(string name, BindingFlags bindingAttr) { throw new NotSupportedException(); }
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
155public override Type? GetNestedType(string name, BindingFlags bindingAttr) => throw new NotSupportedException(SR.NotSupported_ModifiedType);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (1)
134public sealed override Type GetNestedType(string name, BindingFlags bindingAttr) => throw new NotSupportedException(SR.NotSupported_SignatureType);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
130public override Type? GetNestedType(string name, BindingFlags bindingAttr) => typeImpl.GetNestedType(name, bindingAttr);
System\RuntimeType.NativeAot.cs (1)
746public override Type? GetNestedType(string name, BindingFlags bindingAttr)
System.Private.Reflection.Execution (1)
Internal\Reflection\Execution\TypeLoader\ConstraintValidatorSupport.cs (1)
166public override Type GetNestedType(string name, BindingFlags bindingAttr) { Debug.Assert(false); throw NotImplemented.ByDesign; }
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
366public override Type? GetNestedType(string name, BindingFlags bindingAttr)
System.Reflection.Emit (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
455public override Type GetNestedType(string name, BindingFlags bindingAttr)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\RuntimeTypeInfo.BindingFlags.cs (1)
104public sealed override Type? GetNestedType(string name, BindingFlags bindingAttr) => Query<Type>(name, bindingAttr).Disambiguate();
12 references to GetNestedType
Aspire.Hosting.Tests (1)
AtsEventingExportsTests.cs (1)
20var callbackSubscriberType = method.DeclaringType!.GetNestedType("CallbackEventingSubscriber", BindingFlags.NonPublic)!;
ILCompiler.Compiler (1)
src\runtime\src\tools\illink\src\ILLink.Shared\TrimAnalysis\IntrinsicId.cs (1)
153/// <item><see cref="System.Type.GetNestedType(string, System.Reflection.BindingFlags)"/></item>
illink (1)
ILLink.RoslynAnalyzer (1)
src\runtime\src\tools\illink\src\ILLink.Shared\TrimAnalysis\IntrinsicId.cs (1)
153/// <item><see cref="System.Type.GetNestedType(string, System.Reflection.BindingFlags)"/></item>
Microsoft.ML.Predictor.Tests (1)
CmdLine\CmdLineReverseTest.cs (1)
191.GetNestedType("ComponentFactoryFactory", BindingFlags.NonPublic)
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
130public override Type? GetNestedType(string name, BindingFlags bindingAttr) => typeImpl.GetNestedType(name, bindingAttr);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\TypeInfo.cs (1)
28public virtual TypeInfo? GetDeclaredNestedType(string name) => GetNestedType(name, DeclaredOnlyLookup)?.GetTypeInfo();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Type.cs (1)
399public Type? GetNestedType(string name) => GetNestedType(name, DefaultLookup);
System\Reflection\TypeNameResolver.NativeAot.cs (1)
217type = type.GetNestedType(nestedTypeNames[i], bindingFlags);
System.Private.Windows.Core.TestUtilities (1)
ReflectionHelper.cs (1)
65Type nestedType = parentType.GetNestedType(nestedTypeName, BindingFlags.Public | BindingFlags.NonPublic)
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
368return _typeInfo.GetNestedType(name, bindingAttr);
System.Reflection.TypeExtensions (1)
System\Reflection\TypeExtensions.cs (1)
276return type.GetNestedType(name, bindingAttr);