MongoDB.Driver.Internal.MongoUpdateMessage.MongoUpdateMessage C# (CSharp) Method

MongoUpdateMessage() private method

private MongoUpdateMessage ( BsonBinaryWriterSettings writerSettings, string collectionFullName, bool checkUpdateDocument, UpdateFlags flags, IMongoQuery query, IMongoUpdate update ) : System
writerSettings MongoDB.Bson.IO.BsonBinaryWriterSettings
collectionFullName string
checkUpdateDocument bool
flags UpdateFlags
query IMongoQuery
update IMongoUpdate
return System
        internal MongoUpdateMessage(
            BsonBinaryWriterSettings writerSettings,
            string collectionFullName,
            bool checkUpdateDocument,
            UpdateFlags flags,
            IMongoQuery query,
            IMongoUpdate update)
            : base(MessageOpcode.Update, null, writerSettings)
        {
            _collectionFullName = collectionFullName;
            _checkUpdateDocument = checkUpdateDocument;
            _flags = flags;
            _query = query;
            _update = update;
        }