Class StreamTokenStream
An ITokenStream<TToken> implementation based on a Stream.
Inheritance
- object
- StreamTokenStream
Implements
Inherited Members
- object.GetType()
- object.MemberwiseClone()
- object.ToString()
- object.Equals(object)
- object.Equals(object, object)
- object.ReferenceEquals(object, object)
- object.GetHashCode()
Declaration
public class StreamTokenStream : ITokenStream<byte>
Constructors
StreamTokenStream(Stream)
Creates an ITokenStream<TToken> implementation based on a Stream.
Declaration
public StreamTokenStream(Stream input)
Parameters
| Type | Name | Description |
|---|---|---|
input |
The Stream. |
Properties
ChunkSizeHint
Returns 4096.
Declaration
public int ChunkSizeHint { get; }
Property Value
| Type | Description |
|---|---|
Methods
Read(Span<byte>)
Read up to buffer.Length tokens into buffer.
Return the actual number of tokens read, which may be fewer than
the size of the buffer if the stream has reached the end.
Declaration
public int Read(Span<byte> buffer)
Parameters
| Type | Name | Description |
|---|---|---|
buffer |
The buffer to read tokens into. |
Returns
| Type | Description |
|---|---|
The actual number of tokens read. |