mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-09-22 23:15:20 +00:00
expose Position getter in ForwardOnlyStream
This commit is contained in:
@@ -31,7 +31,7 @@ public class ForwardOnlyStream(Stream stream) : Stream
|
||||
|
||||
public override long Position
|
||||
{
|
||||
get => throw new NotSupportedException();
|
||||
get => stream.Position;
|
||||
set => throw new NotSupportedException();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user