GSF.Snap.Services.Reader.SortedTreeEngineReaderOptions.Save C# (CSharp) Méthode

Save() public méthode

Writes this data to the stream.
public Save ( BinaryStreamBase stream ) : void
stream GSF.IO.BinaryStreamBase the stream to write data to
Résultat void
        public void Save(BinaryStreamBase stream)
        {
            stream.Write((byte)0);
            stream.Write(Timeout.Ticks);
            stream.Write(MaxReturnedCount);
            stream.Write(MaxScanCount);
            stream.Write(MaxSeekCount);
        }
SortedTreeEngineReaderOptions