Skip to content

Commit

Permalink
try test
Browse files Browse the repository at this point in the history
  • Loading branch information
wj8400684 committed May 12, 2024
1 parent 40391e4 commit 263e4a7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/SuperSocket.Quic.Connection/QuicPipeStream.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ public QuicPipeStream(QuicConnection connection)
public override bool CanSeek => _stream.CanSeek;
public override bool CanWrite => _stream.CanWrite;
public override long Length => _stream.Length;

public override int ReadTimeout
{
get => _stream.ReadTimeout;
set => _stream.ReadTimeout = value;
}
public override long Position
{
get => _stream.Position;
Expand Down

0 comments on commit 263e4a7

Please sign in to comment.