5 references to ImplementationTag
System.Reflection.Metadata (5)
System\Reflection\Metadata\Ecma335\CodedIndex.cs (5)
78public static int Implementation(EntityHandle handle) => (handle.RowId << (int)ImplementationTag.BitCount) | (int)ToImplementationTag(handle.Kind); 349private static ImplementationTag ToImplementationTag(HandleKind kind) 353case HandleKind.AssemblyFile: return ImplementationTag.File; 354case HandleKind.AssemblyReference: return ImplementationTag.AssemblyRef; 355case HandleKind.ExportedType: return ImplementationTag.ExportedType;