1 write to MethodDebugInformationTable
System.Reflection.Metadata (1)
System\Reflection\Metadata\MetadataReader.cs (1)
758this.MethodDebugInformationTable = new MethodDebugInformationTableReader(rowCounts[(int)TableIndex.MethodDebugInformation], GetReferenceSize(rowCounts, TableIndex.Document), blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize);
6 references to MethodDebugInformationTable
System.Reflection.Metadata (6)
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
97TableIndex.MethodDebugInformation => reader.MethodDebugInformationTable.RowSize, 178TableIndex.MethodDebugInformation => reader.MethodDebugInformationTable.Block,
System\Reflection\Metadata\MetadataReader.cs (1)
759totalRequiredSize += this.MethodDebugInformationTable.Block.Length;
System\Reflection\Metadata\PortablePdb\HandleCollections.Debug.cs (1)
123_lastRowId = reader.MethodDebugInformationTable.NumberOfRows;
System\Reflection\Metadata\PortablePdb\MethodDebugInformation.cs (2)
35public BlobHandle SequencePointsBlob => _reader.MethodDebugInformationTable.GetSequencePoints(Handle); 41public DocumentHandle Document => _reader.MethodDebugInformationTable.GetDocument(Handle);