12 references to CustomDebugInformation
System.Reflection.Metadata (12)
System\Reflection\Metadata\Ecma335\MetadataBuilder.Tables.cs (4)
190case TableIndex.CustomDebugInformation: SetTableCapacity(_customDebugInformationTable, rowCount); break; 270case TableIndex.CustomDebugInformation : return _customDebugInformationTable.Count; 343rowCounts[(int)TableIndex.CustomDebugInformation] = _customDebugInformationTable.Count; 1863if (metadataSizes.IsPresent(TableIndex.CustomDebugInformation))
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
103TableIndex.CustomDebugInformation => reader.CustomDebugInformationTable.RowSize, 184TableIndex.CustomDebugInformation => reader.CustomDebugInformationTable.Block,
System\Reflection\Metadata\Ecma335\MetadataSizes.cs (2)
411UL << (int)TableIndex.CustomDebugInformation; 325size += GetTableSize(TableIndex.CustomDebugInformation, hasCustomDebugInformationCodedIndexSize + guidReferenceSize + blobReferenceSize);
System\Reflection\Metadata\Internal\MetadataFlags.cs (2)
71CustomDebugInformation = 1UL << TableIndex.CustomDebugInformation, 241internal const uint CustomDebugInformation = (uint)TableIndex.CustomDebugInformation;
System\Reflection\Metadata\MetadataReader.cs (1)
776this.CustomDebugInformationTable = new CustomDebugInformationTableReader(rowCounts[(int)TableIndex.CustomDebugInformation], IsDeclaredSorted(TableMask.CustomDebugInformation), hasCustomDebugInformationRefSizeCombined, guidHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize);
System\Reflection\Metadata\PortablePdb\Tables.Debug.cs (1)
465Throw.TableNotSorted(TableIndex.CustomDebugInformation);