expose Position getter in ForwardOnlyStream

This commit is contained in:
Morilli
2024-12-19 20:41:00 +01:00
parent 9b0e0ee536
commit f51bdd56aa

View File

@@ -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();
}