Files

10 lines
197 B
C#
Raw Permalink Normal View History

2026-06-15 18:18:16 +08:00
namespace Best.HTTP.Shared.Streams
{
public abstract class PeekableStream : BufferSegmentStream
{
public abstract void BeginPeek();
public abstract int PeekByte();
}
}