68 references to MethodImplAttributes
mscorlib (47)
system\reflection\cominterfaces.cs (3)
318MethodImplAttributes GetMethodImplementationFlags(); 376MethodImplAttributes GetMethodImplementationFlags(); 440MethodImplAttributes GetMethodImplementationFlags();
system\reflection\ConstructorInfo.cs (1)
504public override MethodImplAttributes GetMethodImplementationFlags()
system\reflection\emit\constructorbuilder.cs (2)
134public override MethodImplAttributes GetMethodImplementationFlags() 301public void SetImplementationFlags(MethodImplAttributes attributes)
system\reflection\emit\dynamicmethod.cs (4)
624public override MethodImplAttributes GetMethodImplementationFlags() { return m_dynMethod.GetMethodImplementationFlags(); } 920public override MethodImplAttributes GetMethodImplementationFlags() { 921return MethodImplAttributes.IL | MethodImplAttributes.NoInlining;
system\reflection\emit\methodbuilder.cs (7)
54private MethodImplAttributes m_dwMethodImplFlags; 184m_dwMethodImplFlags = MethodImplAttributes.IL; 582public override MethodImplAttributes GetMethodImplementationFlags() 1101public void SetImplementationFlags(MethodImplAttributes attributes) 1137if ((m_dwMethodImplFlags & MethodImplAttributes.CodeTypeMask) != MethodImplAttributes.IL || 1138(m_dwMethodImplFlags & MethodImplAttributes.Unmanaged) != 0 ||
system\reflection\emit\methodbuilderinstantiation.cs (1)
64public override MethodImplAttributes GetMethodImplementationFlags() { return m_method.GetMethodImplementationFlags(); }
system\reflection\emit\symbolmethod.cs (1)
108public override MethodImplAttributes GetMethodImplementationFlags()
system\reflection\emit\typebuilder.cs (5)
283internal static extern void SetMethodImpl(RuntimeModule module, int tkMethod, MethodImplAttributes MethodImplAttributes); 2383if (((meth.GetMethodImplementationFlags() &(MethodImplAttributes.CodeTypeMask|MethodImplAttributes.PreserveSig|MethodImplAttributes.Unmanaged)) != MethodImplAttributes.IL) ||
system\reflection\emit\xxxontypebuilderinstantiation.cs (2)
77public override MethodImplAttributes GetMethodImplementationFlags() { return m_method.GetMethodImplementationFlags(); } 174public override MethodImplAttributes GetMethodImplementationFlags() { return m_ctor.GetMethodImplementationFlags(); }
system\reflection\methodbase.cs (2)
165public virtual MethodImplAttributes MethodImplementationFlags 173public abstract MethodImplAttributes GetMethodImplementationFlags();
system\reflection\methodinfo.cs (1)
603public override MethodImplAttributes GetMethodImplementationFlags()
system\runtime\compilerservices\methodimplattribute.cs (14)
19Unmanaged = System.Reflection.MethodImplAttributes.Unmanaged, 20ForwardRef = System.Reflection.MethodImplAttributes.ForwardRef, 21PreserveSig = System.Reflection.MethodImplAttributes.PreserveSig, 22InternalCall = System.Reflection.MethodImplAttributes.InternalCall, 23Synchronized = System.Reflection.MethodImplAttributes.Synchronized, 24NoInlining = System.Reflection.MethodImplAttributes.NoInlining, 26AggressiveInlining = System.Reflection.MethodImplAttributes.AggressiveInlining, 27NoOptimization = System.Reflection.MethodImplAttributes.NoOptimization, 28SecurityMitigations = System.Reflection.MethodImplAttributes.SecurityMitigations, 36IL = System.Reflection.MethodImplAttributes.IL, 37Native = System.Reflection.MethodImplAttributes.Native, 39OPTIL = System.Reflection.MethodImplAttributes.OPTIL, 40Runtime = System.Reflection.MethodImplAttributes.Runtime 52internal MethodImplAttribute(MethodImplAttributes methodImplAttributes)
system\runtime\interopservices\attributes.cs (3)
677if ((method.GetMethodImplementationFlags() & MethodImplAttributes.PreserveSig) == 0) 685return (method.GetMethodImplementationFlags() & MethodImplAttributes.PreserveSig) != 0; 820bool preserveSig = (method.GetMethodImplementationFlags() & MethodImplAttributes.PreserveSig) != 0;
system\runtimehandles.cs (1)
1189internal static extern MethodImplAttributes GetImplAttributes(IRuntimeMethodInfo method);
System (2)
net\System\Net\_AutoWebProxyScriptHelper.cs (2)
178public override MethodImplAttributes GetMethodImplementationFlags() { 180return MethodImplAttributes.IL;
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1952public override MethodImplAttributes GetMethodImplementationFlags() { return _info.GetMethodImplementationFlags(); }
System.Core (3)
Microsoft\Scripting\Compiler\DelegateHelpers.cs (3)
28private const MethodImplAttributes ImplAttributes = MethodImplAttributes.Runtime | MethodImplAttributes.Managed;
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1952public override MethodImplAttributes GetMethodImplementationFlags() { return _info.GetMethodImplementationFlags(); }
System.Workflow.Activities (4)
Rules\RuleValidation.cs (4)
216public override MethodImplAttributes GetMethodImplementationFlags() 344public override MethodImplAttributes GetMethodImplementationFlags() 671public override MethodImplAttributes GetMethodImplementationFlags() 673return MethodImplAttributes.Runtime;
System.Workflow.ComponentModel (8)
AuthoringOM\Compiler\TypeSystem\MethodInfo.cs (4)
63public override MethodImplAttributes GetMethodImplementationFlags() 65return MethodImplAttributes.IL; 224public override MethodImplAttributes GetMethodImplementationFlags() 226return MethodImplAttributes.IL;
AuthoringOM\Compiler\TypeSystem\PropertyInfo.cs (2)
333public override MethodImplAttributes GetMethodImplementationFlags() 335return MethodImplAttributes.IL;
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (2)
816public override MethodImplAttributes GetMethodImplementationFlags() 1105public override MethodImplAttributes GetMethodImplementationFlags()
System.WorkflowServices (2)
System\Workflow\Activities\ContractMethodInfo.cs (2)
180public override MethodImplAttributes GetMethodImplementationFlags() 182return MethodImplAttributes.IL;