9 references to TotalSize
System.IO.Compression (9)
System\IO\Compression\ZipArchive.Async.cs (1)
327if (eocdStart < Zip64EndOfCentralDirectoryLocator.TotalSize)
System\IO\Compression\ZipArchive.cs (2)
828if (eocdStart < Zip64EndOfCentralDirectoryLocator.TotalSize) 985_archiveStream.Seek(Zip64EndOfCentralDirectoryLocator.TotalSize, SeekOrigin.Current);
System\IO\Compression\ZipBlocks.Async.cs (2)
83byte[] blockContents = new byte[TotalSize]; 96byte[] blockContents = new byte[TotalSize];
System\IO\Compression\ZipBlocks.cs (4)
458public const int SizeOfBlockWithoutSignature = TotalSize - FieldLengths.Signature; 467if (bytesRead < TotalSize || !blockContents.StartsWith(SignatureConstantBytes)) 484Span<byte> blockContents = stackalloc byte[TotalSize]; 506Span<byte> blockContents = stackalloc byte[TotalSize];