allow forward only write

This commit is contained in:
Adam Hathcock
2025-10-28 11:01:27 +00:00
parent a1de3eb47d
commit 19967f5ad7

View File

@@ -77,5 +77,5 @@ public class ForwardOnlyStream : SharpCompressStream, IStreamStack
public override void SetLength(long value) => throw new NotSupportedException();
public override void Write(byte[] buffer, int offset, int count) =>
throw new NotSupportedException();
stream.Write(buffer, offset, count);
}