Interface IReadOnlySequenceSource<T>
Represents disposable source of ReadOnlySequence<T>.
Inherited Members
Namespace: DotNext.Buffers
Assembly: DotNext.IO.dll
Syntax
public interface IReadOnlySequenceSource<T> : IDisposable, ISupplier<ReadOnlySequence<T>>, IFunctional<Func<ReadOnlySequence<T>>>
Type Parameters
Name | Description |
---|---|
T | The type of the elements in the sequence. |
Properties
| Edit this page View SourceSequence
Gets the sequence of elements associated with this source.
Declaration
ReadOnlySequence<T> Sequence { get; }
Property Value
Type | Description |
---|---|
ReadOnlySequence<T> | The sequence of elements associated with this source. |
Remarks
The sequence is no longer valid after calling of Dispose() method.