5 overrides of Attributes
System.Private.CoreLib (5)
System\Reflection\Runtime\TypeInfos\NativeFormat\NativeFormatRuntimeNamedTypeInfo.cs (1)
158public sealed override TypeAttributes Attributes => _typeDefinition.Flags;
System\Reflection\Runtime\TypeInfos\RuntimeConstructedGenericTypeInfo.cs (1)
168public sealed override TypeAttributes Attributes => GenericTypeDefinitionTypeInfo.Attributes;
System\Reflection\Runtime\TypeInfos\RuntimeFunctionPointerTypeInfo.cs (1)
105public override TypeAttributes Attributes => TypeAttributes.Public;
System\Reflection\Runtime\TypeInfos\RuntimeGenericParameterTypeInfo.cs (1)
101public sealed override TypeAttributes Attributes => TypeAttributes.Public;
System\Reflection\Runtime\TypeInfos\RuntimeHasElementTypeInfo.cs (1)
117public override TypeAttributes Attributes
7 references to Attributes
System.Private.CoreLib (7)
System\Reflection\Runtime\TypeInfos\RuntimeConstructedGenericTypeInfo.cs (1)
168public sealed override TypeAttributes Attributes => GenericTypeDefinitionTypeInfo.Attributes;
System\Reflection\Runtime\TypeInfos\RuntimeNamedTypeInfo.cs (2)
41TypeAttributes attributes = Attributes; 123TypeAttributes attributes = Attributes;
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.cs (3)
335TypeAttributes attributes = Attributes; 551public bool IsAbstract => (Attributes & TypeAttributes.Abstract) != 0; 553public bool IsInterface => (Attributes & TypeAttributes.Interface) != 0;
System\RuntimeType.NativeAot.cs (1)
688protected override TypeAttributes GetAttributeFlagsImpl() => GetRuntimeTypeInfo().Attributes;