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