4 references to MaxBufferLength
System.Formats.Tar (4)
System\Formats\Tar\TarHelpers.cs (4)
63byte[] buffer = ArrayPool<byte>.Shared.Rent(minimumLength: (int)Math.Min(MaxBufferLength, bytesToDiscard)); 68int currentLengthToRead = (int)Math.Min(MaxBufferLength, bytesToDiscard); 86byte[] buffer = ArrayPool<byte>.Shared.Rent(minimumLength: (int)Math.Min(MaxBufferLength, bytesToCopy)); 91int currentLengthToRead = (int)Math.Min(MaxBufferLength, bytesToCopy);