4 overrides of ComputeMethodImplementationFlags
System.Reflection.MetadataLoadContext (4)
System\Reflection\TypeLoading\General\Sentinels.cs (1)
45protected sealed override MethodImplAttributes ComputeMethodImplementationFlags() => throw null!;
System\Reflection\TypeLoading\Methods\RoConstructedGenericMethod.cs (1)
38protected sealed override MethodImplAttributes ComputeMethodImplementationFlags() => _genericMethodDefinition.MethodImplementationFlags;
System\Reflection\TypeLoading\Methods\RoDefinitionMethod.cs (1)
72protected sealed override MethodImplAttributes ComputeMethodImplementationFlags() => _decoder.ComputeMethodImplementationFlags();
System\Reflection\TypeLoading\Methods\RoSyntheticMethod.cs (1)
40protected sealed override MethodImplAttributes ComputeMethodImplementationFlags() => MethodImplAttributes.IL;
1 reference to ComputeMethodImplementationFlags
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Methods\RoMethod.cs (1)
63public sealed override MethodImplAttributes MethodImplementationFlags => (_lazyMethodImplAttributes == MethodImplAttributesSentinel) ? (_lazyMethodImplAttributes = ComputeMethodImplementationFlags()) : _lazyMethodImplAttributes;