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