Exemple #1
0
        protected override void ReadValueFromStream(Stream stream)
        {
            var increment = BinUtils.ReadUInt32(stream);
            var epoch     = ((long)BinUtils.ReadInt32(stream)).FromSecondsSinceUnixEpochStart();

            Value = new BSONTimestamp(epoch, increment);
        }