4 overrides of MethodImplementationFlags
System.Private.CoreLib (2)
System\Reflection\Runtime\MethodInfos\RuntimeConstructorInfo.cs (1)
134public abstract override MethodImplAttributes MethodImplementationFlags { get; }
System\Reflection\Runtime\MethodInfos\RuntimeMethodInfo.cs (1)
195public abstract override MethodImplAttributes MethodImplementationFlags
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\Constructors\RoConstructor.cs (1)
54public sealed override MethodImplAttributes MethodImplementationFlags => (_lazyMethodImplAttributes == MethodImplAttributesSentinel) ? (_lazyMethodImplAttributes = ComputeMethodImplementationFlags()) : _lazyMethodImplAttributes;
System\Reflection\TypeLoading\Methods\RoMethod.cs (1)
62public sealed override MethodImplAttributes MethodImplementationFlags => (_lazyMethodImplAttributes == MethodImplAttributesSentinel) ? (_lazyMethodImplAttributes = ComputeMethodImplementationFlags()) : _lazyMethodImplAttributes;
1 reference to MethodImplementationFlags
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Diagnostics\StackTrace.cs (1)
379if ((mb.MethodImplementationFlags & MethodImplAttributes.AggressiveInlining) != 0)