10 overrides of GetNestedTypes
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
449
public override Type[]
GetNestedTypes
(BindingFlags bindingAttr)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilderInstantiation.cs (1)
201
public override Type[]
GetNestedTypes
(BindingFlags bindingAttr) { throw new NotSupportedException(); }
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
152
public override Type[]
GetNestedTypes
(BindingFlags bindingAttr) => throw new NotSupportedException(SR.NotSupported_ModifiedType);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (1)
137
public sealed override Type[]
GetNestedTypes
(BindingFlags bindingAttr) => throw new NotSupportedException(SR.NotSupported_SignatureType);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
127
public override Type[]
GetNestedTypes
(BindingFlags bindingAttr) => typeImpl.GetNestedTypes(bindingAttr);
System\RuntimeType.NativeAot.cs (1)
750
public override Type[]
GetNestedTypes
(BindingFlags bindingAttr)
System.Private.Reflection.Execution (1)
Internal\Reflection\Execution\TypeLoader\ConstraintValidatorSupport.cs (1)
168
public override Type[]
GetNestedTypes
(BindingFlags bindingAttr) { Debug.Assert(false); throw NotImplemented.ByDesign; }
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
371
public override Type[]
GetNestedTypes
(BindingFlags bindingAttr)
System.Reflection.Emit (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
449
public override Type[]
GetNestedTypes
(BindingFlags bindingAttr)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\RuntimeTypeInfo.BindingFlags.cs (1)
103
public sealed override Type[]
GetNestedTypes
(BindingFlags bindingAttr) => Query<Type>(bindingAttr).ToArray();
13 references to GetNestedTypes
ILCompiler.Compiler (1)
src\runtime\src\tools\illink\src\ILLink.Shared\TrimAnalysis\IntrinsicId.cs (1)
158
/// <see cref="System.Type.
GetNestedTypes
(System.Reflection.BindingFlags)"/>
illink (1)
src\runtime\src\tools\illink\src\ILLink.Shared\TrimAnalysis\IntrinsicId.cs (1)
158
/// <see cref="System.Type.
GetNestedTypes
(System.Reflection.BindingFlags)"/>
ILLink.RoslynAnalyzer (1)
src\runtime\src\tools\illink\src\ILLink.Shared\TrimAnalysis\IntrinsicId.cs (1)
158
/// <see cref="System.Type.
GetNestedTypes
(System.Reflection.BindingFlags)"/>
System.Private.CoreLib (7)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
127
public override Type[] GetNestedTypes(BindingFlags bindingAttr) => typeImpl.
GetNestedTypes
(bindingAttr);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\TypeInfo.cs (1)
91
Type type) => type.
GetNestedTypes
(DeclaredOnlyLookup);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Type.cs (1)
405
public Type[] GetNestedTypes() =>
GetNestedTypes
(DefaultLookup);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Type.Helpers.cs (1)
280
t =
GetNestedTypes
(bindingAttr);
System\Reflection\Runtime\Assemblies\RuntimeAssemblyInfo.cs (1)
145
foreach (Type nestedType in type.
GetNestedTypes
(BindingFlags.Public))
System\Reflection\Runtime\BindingFlagSupport\NestedTypePolicies.cs (1)
34
return type.
GetNestedTypes
(DeclaredOnlyLookup);
System\Reflection\TypeNameResolver.NativeAot.cs (1)
223
foreach (Type nt in declaringType.
GetNestedTypes
(BindingFlags.NonPublic | BindingFlags.Public))
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
373
return _typeInfo.
GetNestedTypes
(bindingAttr);
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Assemblies\RoAssembly.GetForwardedTypes.cs (1)
67
foreach (Type nestedType in type.
GetNestedTypes
(BindingFlags.Public))
System.Reflection.TypeExtensions (1)
System\Reflection\TypeExtensions.cs (1)
286
return type.
GetNestedTypes
(bindingAttr);