7 references to TotalSize
System.IO.Compression (7)
System\IO\Compression\ZipArchive.cs (1)
841_archiveStream.Seek(Zip64EndOfCentralDirectoryLocator.TotalSize, SeekOrigin.Current);
System\IO\Compression\ZipBlocks.Async.cs (2)
62byte[] blockContents = new byte[TotalSize]; 75byte[] blockContents = new byte[TotalSize];
System\IO\Compression\ZipBlocks.cs (4)
413public const int SizeOfBlockWithoutSignature = TotalSize - FieldLengths.Signature; 422if (bytesRead < TotalSize || !blockContents.StartsWith(SignatureConstantBytes)) 439Span<byte> blockContents = stackalloc byte[TotalSize]; 461Span<byte> blockContents = stackalloc byte[TotalSize];