2 overrides of ComputeMethodImplementationFlags
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\Constructors\RoDefinitionConstructor.cs (1)
33protected sealed override MethodImplAttributes ComputeMethodImplementationFlags() => _decoder.ComputeMethodImplementationFlags();
System\Reflection\TypeLoading\Constructors\RoSyntheticConstructor.cs (1)
37protected sealed override MethodImplAttributes ComputeMethodImplementationFlags() => MethodImplAttributes.IL;
1 reference to ComputeMethodImplementationFlags
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Constructors\RoConstructor.cs (1)
55public sealed override MethodImplAttributes MethodImplementationFlags => (_lazyMethodImplAttributes == MethodImplAttributesSentinel) ? (_lazyMethodImplAttributes = ComputeMethodImplementationFlags()) : _lazyMethodImplAttributes;