// constructors internal BsonBinaryReaderBookmark( BsonReaderState state, BsonType currentBsonType, string currentName, BsonBinaryReaderContext context, int position) : base(state, currentBsonType, currentName) { _context = context.Clone(); _position = position; }
// internal methods internal BsonBinaryReaderContext CloneContext() { return(_context.Clone()); }