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