9 references to ImplAttributes
ILCompiler.MetadataTransform (1)
ILCompiler\Metadata\Transform.Method.cs (1)
231return methodDef.ImplAttributes;
ILCompiler.ReadyToRun (2)
Compiler\DependencyAnalysis\ReadyToRun\TypeValidationChecker.cs (2)
199if (methodDef.ImplAttributes.HasFlag(System.Reflection.MethodImplAttributes.Runtime)) 205if (methodDef.ImplAttributes.HasFlag(System.Reflection.MethodImplAttributes.InternalCall))
ILCompiler.TypeSystem (1)
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\EcmaMethod.cs (1)
396return MetadataReader.GetMethodDefinition(_handle).ImplAttributes;
Microsoft.CodeAnalysis (2)
MetadataReader\PEModule.cs (2)
3407implFlags = methodRow.ImplAttributes; 4001if ((method.ImplAttributes & MethodImplAttributes.CodeTypeMask) != MethodImplAttributes.IL ||
Microsoft.Diagnostics.DataContractReader.Legacy (2)
MetaDataImportImpl.cs (2)
552*pdwImplFlags = (uint)methodDef.ImplAttributes; 873*pdwImplFlags = (uint)methodDef.ImplAttributes;
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\MethodBase\Ecma\EcmaMethodDecoder.cs (1)
69public MethodImplAttributes ComputeMethodImplementationFlags() => MethodDefinition.ImplAttributes;