54 references to RowId
System.Reflection.Metadata (54)
System\Reflection\Metadata\Ecma335\CodedIndex.cs (15)
36
public static int HasCustomAttribute(EntityHandle handle) => (handle.
RowId
<< (int)HasCustomAttributeTag.BitCount) | (int)ToHasCustomAttributeTag(handle.Kind);
43
public static int HasConstant(EntityHandle handle) => (handle.
RowId
<< (int)HasConstantTag.BitCount) | (int)ToHasConstantTag(handle.Kind);
50
public static int CustomAttributeType(EntityHandle handle) => (handle.
RowId
<< (int)CustomAttributeTypeTag.BitCount) | (int)ToCustomAttributeTypeTag(handle.Kind);
57
public static int HasDeclSecurity(EntityHandle handle) => (handle.
RowId
<< (int)HasDeclSecurityTag.BitCount) | (int)ToHasDeclSecurityTag(handle.Kind);
64
public static int HasFieldMarshal(EntityHandle handle) => (handle.
RowId
<< (int)HasFieldMarshalTag.BitCount) | (int)ToHasFieldMarshalTag(handle.Kind);
71
public static int HasSemantics(EntityHandle handle) => (handle.
RowId
<< (int)HasSemanticsTag.BitCount) | (int)ToHasSemanticsTag(handle.Kind);
78
public static int Implementation(EntityHandle handle) => (handle.
RowId
<< (int)ImplementationTag.BitCount) | (int)ToImplementationTag(handle.Kind);
85
public static int MemberForwarded(EntityHandle handle) => (handle.
RowId
<< (int)MemberForwardedTag.BitCount) | (int)ToMemberForwardedTag(handle.Kind);
98
public static int MemberRefParent(EntityHandle handle) => (handle.
RowId
<< (int)MemberRefParentTag.BitCount) | (int)ToMemberRefParentTag(handle.Kind);
105
public static int MethodDefOrRef(EntityHandle handle) => (handle.
RowId
<< (int)MethodDefOrRefTag.BitCount) | (int)ToMethodDefOrRefTag(handle.Kind);
112
public static int ResolutionScope(EntityHandle handle) => (handle.
RowId
<< (int)ResolutionScopeTag.BitCount) | (int)ToResolutionScopeTag(handle.Kind);
119
public static int TypeDefOrRef(EntityHandle handle) => (handle.
RowId
<< (int)TypeDefOrRefTag.BitCount) | (int)ToTypeDefOrRefTag(handle.Kind);
126
public static int TypeDefOrRefOrSpec(EntityHandle handle) => (handle.
RowId
<< (int)TypeDefOrRefOrSpecTag.BitCount) | (int)ToTypeDefOrRefOrSpecTag(handle.Kind);
133
public static int TypeOrMethodDef(EntityHandle handle) => (handle.
RowId
<< (int)TypeOrMethodDefTag.BitCount) | (int)ToTypeOrMethodDefTag(handle.Kind);
168
public static int HasCustomDebugInformation(EntityHandle handle) => (handle.
RowId
<< (int)HasCustomDebugInformationTag.BitCount) | (int)ToHasCustomDebugInformationTag(handle.Kind);
System\Reflection\Metadata\Ecma335\MetadataTokens.cs (2)
31
return handle.
RowId
;
125
return handle.IsVirtual ? -1 : handle.
RowId
;
System\Reflection\Metadata\Internal\HasConstantTag.cs (1)
39
uint rowId = (uint)token.
RowId
;
System\Reflection\Metadata\Internal\HasCustomAttributeTag.cs (1)
117
uint rowId = (uint)handle.
RowId
;
System\Reflection\Metadata\Internal\HasDeclSecurityTag.cs (1)
39
uint rowId = (uint)handle.
RowId
;
System\Reflection\Metadata\Internal\HasFieldMarshalTag.cs (2)
38
return (uint)handle.
RowId
<< NumberOfBits | Field;
42
return (uint)handle.
RowId
<< NumberOfBits | Param;
System\Reflection\Metadata\PortablePdb\Handles.Debug.cs (7)
54
return new DocumentHandle(handle.
RowId
);
137
return new MethodDebugInformationHandle(handle.
RowId
);
232
return new LocalScopeHandle(handle.
RowId
);
315
return new LocalVariableHandle(handle.
RowId
);
398
return new LocalConstantHandle(handle.
RowId
);
481
return new ImportScopeHandle(handle.
RowId
);
564
return new CustomDebugInformationHandle(handle.
RowId
);
System\Reflection\Metadata\PortablePdb\HasCustomDebugInformationTag.cs (1)
131
uint rowId = (uint)handle.
RowId
;
System\Reflection\Metadata\TypeSystem\Handles.TypeSystem.cs (24)
54
return new ModuleDefinitionHandle(handle.
RowId
);
137
return new AssemblyDefinitionHandle(handle.
RowId
);
220
return new InterfaceImplementationHandle(handle.
RowId
);
303
return new MethodDefinitionHandle(handle.
RowId
);
398
return new MethodImplementationHandle(handle.
RowId
);
481
return new MethodSpecificationHandle(handle.
RowId
);
564
return new TypeDefinitionHandle(handle.
RowId
);
647
return new ExportedTypeHandle(handle.
RowId
);
730
return new TypeReferenceHandle(handle.
RowId
);
813
return new TypeSpecificationHandle(handle.
RowId
);
896
return new MemberReferenceHandle(handle.
RowId
);
979
return new FieldDefinitionHandle(handle.
RowId
);
1062
return new EventDefinitionHandle(handle.
RowId
);
1145
return new PropertyDefinitionHandle(handle.
RowId
);
1228
return new StandaloneSignatureHandle(handle.
RowId
);
1311
return new ParameterHandle(handle.
RowId
);
1394
return new GenericParameterHandle(handle.
RowId
);
1477
return new GenericParameterConstraintHandle(handle.
RowId
);
1560
return new ModuleReferenceHandle(handle.
RowId
);
1761
return new CustomAttributeHandle(handle.
RowId
);
1844
return new DeclarativeSecurityAttributeHandle(handle.
RowId
);
1927
return new ConstantHandle(handle.
RowId
);
2010
return new ManifestResourceHandle(handle.
RowId
);
2093
return new AssemblyFileHandle(handle.
RowId
);