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)
55
return new ModuleDefinitionHandle(handle.
RowId
);
138
return new AssemblyDefinitionHandle(handle.
RowId
);
221
return new InterfaceImplementationHandle(handle.
RowId
);
304
return new MethodDefinitionHandle(handle.
RowId
);
399
return new MethodImplementationHandle(handle.
RowId
);
482
return new MethodSpecificationHandle(handle.
RowId
);
565
return new TypeDefinitionHandle(handle.
RowId
);
648
return new ExportedTypeHandle(handle.
RowId
);
731
return new TypeReferenceHandle(handle.
RowId
);
814
return new TypeSpecificationHandle(handle.
RowId
);
897
return new MemberReferenceHandle(handle.
RowId
);
980
return new FieldDefinitionHandle(handle.
RowId
);
1063
return new EventDefinitionHandle(handle.
RowId
);
1146
return new PropertyDefinitionHandle(handle.
RowId
);
1229
return new StandaloneSignatureHandle(handle.
RowId
);
1312
return new ParameterHandle(handle.
RowId
);
1395
return new GenericParameterHandle(handle.
RowId
);
1478
return new GenericParameterConstraintHandle(handle.
RowId
);
1561
return new ModuleReferenceHandle(handle.
RowId
);
1762
return new CustomAttributeHandle(handle.
RowId
);
1845
return new DeclarativeSecurityAttributeHandle(handle.
RowId
);
1928
return new ConstantHandle(handle.
RowId
);
2011
return new ManifestResourceHandle(handle.
RowId
);
2094
return new AssemblyFileHandle(handle.
RowId
);