MongoDB.Driver.Builders.QueryConditionList.QueryConditionList C# (CSharp) Method

QueryConditionList() public method

Initializes a new instance of the QueryConditionList class.
public QueryConditionList ( string name ) : System
name string The name of the element to be tested.
return System
        public QueryConditionList(
            string name
        )
            : base(new BsonDocument(name, new BsonDocument())) {
            conditions = document[0].AsBsonDocument;
        }
        #endregion