public abstract class SeekableTreeStream<TKey, TValue> : TreeStream<TKey, TValue>
where TKey : class, new()
where TValue : class, new()
Public MustInherit Class SeekableTreeStream(Of TKey As {Class, New}, TValue As {Class, New})
Inherits TreeStream(Of TKey, TValue)generic<typename TKey, typename TValue>
where TKey : ref class, gcnew()
where TValue : ref class, gcnew()
public ref class SeekableTreeStream abstract : public TreeStream<TKey, TValue>| SeekableTreeStreamTKey, TValue | Initializes a new instance of the SeekableTreeStreamTKey, TValue class |
| Eos |
Boolean indicating that the end of the stream has been read or class has been disposed.
(Inherited from TreeStreamTKey, TValue) |
| IsAlwaysSequential |
Gets if the stream is always in sequential order. Do not return true unless it is guaranteed that
the data read from this stream is sequential.
(Inherited from TreeStreamTKey, TValue) |
| NeverContainsDuplicates |
Gets if the stream will never return duplicate keys. Do not return true unless it is guaranteed that
the data read from this stream will never contain duplicates.
(Inherited from TreeStreamTKey, TValue) |
| Dispose |
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from TreeStreamTKey, TValue) |
| Dispose(Boolean) |
Releases the unmanaged resources used by the TreeStreamTKey, TValue object and optionally releases the managed resources.
(Inherited from TreeStreamTKey, TValue) |
| EndOfStreamReached |
Occurs when the end of the stream has been reached. The default behavior is to call Dispose.
(Inherited from TreeStreamTKey, TValue) |
| Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) |
| Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) |
| GetHashCode | Serves as the default hash function. (Inherited from Object) |
| GetType | Gets the Type of the current instance. (Inherited from Object) |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) |
| Read |
Advances the stream to the next value.
If before the beginning of the stream, advances to the first value
(Inherited from TreeStreamTKey, TValue) |
| ReadAsync |
Advances the stream to the next value.
If before the beginning of the stream, advances to the first value
(Inherited from TreeStreamTKey, TValue) |
| ReadNext |
Advances the stream to the next value.
If before the beginning of the stream, advances to the first value
(Inherited from TreeStreamTKey, TValue) |
| SeekToKey | Seeks the stream to the first value greater than or equal to key. |
| SetEos |
Sets the end-of-stream (EOS) flag, indicating whether the stream has reached its end.
(Inherited from TreeStreamTKey, TValue) |
| ToString | Returns a string that represents the current object. (Inherited from Object) |