6 references to ResolutionScopeTag
System.Reflection.Metadata (6)
System\Reflection\Metadata\Ecma335\CodedIndex.cs (6)
112public static int ResolutionScope(EntityHandle handle) => (handle.RowId << (int)ResolutionScopeTag.BitCount) | (int)ToResolutionScopeTag(handle.Kind); 442private static ResolutionScopeTag ToResolutionScopeTag(HandleKind kind) 446case HandleKind.ModuleDefinition: return ResolutionScopeTag.Module; 447case HandleKind.ModuleReference: return ResolutionScopeTag.ModuleRef; 448case HandleKind.AssemblyReference: return ResolutionScopeTag.AssemblyRef; 449case HandleKind.TypeReference: return ResolutionScopeTag.TypeRef;