GSF.Snap.Services.Reader.SortedTreeEngineReaderOptions.Save C# (CSharp) Method

Save() public method

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