9 references to ImplAttributes
ILCompiler.MetadataTransform (1)
ILCompiler\Metadata\Transform.Method.cs (1)
231
return methodDef.
ImplAttributes
;
ILCompiler.ReadyToRun (2)
Compiler\DependencyAnalysis\ReadyToRun\TypeValidationChecker.cs (2)
199
if (methodDef.
ImplAttributes
.HasFlag(System.Reflection.MethodImplAttributes.Runtime))
205
if (methodDef.
ImplAttributes
.HasFlag(System.Reflection.MethodImplAttributes.InternalCall))
ILCompiler.TypeSystem (1)
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\EcmaMethod.cs (1)
396
return MetadataReader.GetMethodDefinition(_handle).
ImplAttributes
;
Microsoft.CodeAnalysis (2)
MetadataReader\PEModule.cs (2)
3407
implFlags = methodRow.
ImplAttributes
;
4001
if ((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)
69
public MethodImplAttributes ComputeMethodImplementationFlags() => MethodDefinition.
ImplAttributes
;