10 overrides of GetNestedType
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
455
public override Type
GetNestedType
(string name, BindingFlags bindingAttr)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilderInstantiation.cs (1)
204
public override Type
GetNestedType
(string name, BindingFlags bindingAttr) { throw new NotSupportedException(); }
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
155
public 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)
134
public 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)
130
public override Type?
GetNestedType
(string name, BindingFlags bindingAttr) => typeImpl.GetNestedType(name, bindingAttr);
System\RuntimeType.NativeAot.cs (1)
746
public override Type?
GetNestedType
(string name, BindingFlags bindingAttr)
System.Private.Reflection.Execution (1)
Internal\Reflection\Execution\TypeLoader\ConstraintValidatorSupport.cs (1)
166
public override Type
GetNestedType
(string name, BindingFlags bindingAttr) { Debug.Assert(false); throw NotImplemented.ByDesign; }
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
366
public 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)
455
public override Type
GetNestedType
(string name, BindingFlags bindingAttr)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\RuntimeTypeInfo.BindingFlags.cs (1)
104
public sealed override Type?
GetNestedType
(string name, BindingFlags bindingAttr) => Query<Type>(name, bindingAttr).Disambiguate();
12 references to GetNestedType
Aspire.Hosting.Tests (1)
AtsEventingExportsTests.cs (1)
20
var 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)
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.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)
130
public override Type? GetNestedType(string name, BindingFlags bindingAttr) => typeImpl.
GetNestedType
(name, bindingAttr);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\TypeInfo.cs (1)
28
public virtual TypeInfo? GetDeclaredNestedType(string name) =>
GetNestedType
(name, DeclaredOnlyLookup)?.GetTypeInfo();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Type.cs (1)
399
public Type? GetNestedType(string name) =>
GetNestedType
(name, DefaultLookup);
System\Reflection\TypeNameResolver.NativeAot.cs (1)
217
type = type.
GetNestedType
(nestedTypeNames[i], bindingFlags);
System.Private.Windows.Core.TestUtilities (1)
ReflectionHelper.cs (1)
65
Type nestedType = parentType.
GetNestedType
(nestedTypeName, BindingFlags.Public | BindingFlags.NonPublic)
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
368
return _typeInfo.
GetNestedType
(name, bindingAttr);
System.Reflection.TypeExtensions (1)
System\Reflection\TypeExtensions.cs (1)
276
return type.
GetNestedType
(name, bindingAttr);