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