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