2 overrides of ComputeAttributes
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\Constructors\RoDefinitionConstructor.cs (1)
31
protected sealed override MethodAttributes
ComputeAttributes
() => _decoder.ComputeAttributes();
System\Reflection\TypeLoading\Constructors\RoSyntheticConstructor.cs (1)
35
protected 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)
45
public sealed override MethodAttributes Attributes => (_lazyMethodAttributes == MethodAttributesSentinel) ? (_lazyMethodAttributes =
ComputeAttributes
()) : _lazyMethodAttributes;