10 overrides of ComputeAttributeFlags
System.Reflection.MetadataLoadContext (10)
System\Reflection\TypeLoading\Types\Ecma\EcmaDefinitionType.cs (1)
50protected sealed override TypeAttributes ComputeAttributeFlags() => TypeDefinition.Attributes;
System\Reflection\TypeLoading\Types\RoArrayType.cs (1)
70protected sealed override TypeAttributes ComputeAttributeFlags() => TypeAttributes.AutoLayout | TypeAttributes.AnsiClass | TypeAttributes.Class | TypeAttributes.Public | TypeAttributes.Sealed | TypeAttributes.Serializable;
System\Reflection\TypeLoading\Types\RoByRefType.cs (1)
28protected sealed override TypeAttributes ComputeAttributeFlags() => TypeAttributes.Public;
System\Reflection\TypeLoading\Types\RoConstructedGenericType.cs (1)
113protected sealed override TypeAttributes ComputeAttributeFlags() => _genericTypeDefinition.Attributes;
System\Reflection\TypeLoading\Types\RoExceptionType.cs (1)
32protected sealed override TypeAttributes ComputeAttributeFlags() => throw null!;
System\Reflection\TypeLoading\Types\RoFunctionPointerType.cs (1)
205protected sealed override TypeAttributes ComputeAttributeFlags() => TypeAttributes.Public;
System\Reflection\TypeLoading\Types\RoGenericParameterType.cs (1)
38protected sealed override TypeAttributes ComputeAttributeFlags() => TypeAttributes.Public;
System\Reflection\TypeLoading\Types\RoModifiedType.cs (1)
147protected override TypeAttributes ComputeAttributeFlags() => _unmodifiedType.Call_ComputeAttributeFlags();
System\Reflection\TypeLoading\Types\RoPointerType.cs (1)
28protected sealed override TypeAttributes ComputeAttributeFlags() => TypeAttributes.Public;
System\Reflection\TypeLoading\Types\RoStubType.cs (1)
40protected sealed override TypeAttributes ComputeAttributeFlags() => throw null!;
2 references to ComputeAttributeFlags
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\Types\RoType.cs (2)
277protected sealed override TypeAttributes GetAttributeFlagsImpl() => (_lazyTypeAttributes == TypeAttributesSentinel) ? (_lazyTypeAttributes = ComputeAttributeFlags()) : _lazyTypeAttributes; 279internal TypeAttributes Call_ComputeAttributeFlags() => ComputeAttributeFlags();