4 overrides of ComputeAttributes
System.Reflection.MetadataLoadContext (4)
System\Reflection\TypeLoading\General\Sentinels.cs (1)
42protected sealed override MethodAttributes ComputeAttributes() => throw null!;
System\Reflection\TypeLoading\Methods\RoConstructedGenericMethod.cs (1)
36protected sealed override MethodAttributes ComputeAttributes() => _genericMethodDefinition.Attributes;
System\Reflection\TypeLoading\Methods\RoDefinitionMethod.cs (1)
70protected sealed override MethodAttributes ComputeAttributes() => _decoder.ComputeAttributes();
System\Reflection\TypeLoading\Methods\RoSyntheticMethod.cs (1)
38protected sealed override MethodAttributes ComputeAttributes() => MethodAttributes.PrivateScope | MethodAttributes.Public;
1 reference to ComputeAttributes
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Methods\RoMethod.cs (1)
53public sealed override MethodAttributes Attributes => (_lazyMethodAttributes == MethodAttributesSentinel) ? (_lazyMethodAttributes = ComputeAttributes()) : _lazyMethodAttributes;