2 overrides of ComputeAttributes
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\Constructors\RoDefinitionConstructor.cs (1)
31protected sealed override MethodAttributes ComputeAttributes() => _decoder.ComputeAttributes();
System\Reflection\TypeLoading\Constructors\RoSyntheticConstructor.cs (1)
35protected sealed override MethodAttributes ComputeAttributes() => MethodAttributes.PrivateScope | MethodAttributes.Public | MethodAttributes.RTSpecialName;
1 reference to ComputeAttributes
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Constructors\RoConstructor.cs (1)
45public sealed override MethodAttributes Attributes => (_lazyMethodAttributes == MethodAttributesSentinel) ? (_lazyMethodAttributes = ComputeAttributes()) : _lazyMethodAttributes;