CSMongo.Query.MongoQuery.Exists C# (CSharp) Method

Exists() public method

Finds records that the requested field exists in
public Exists ( string field ) : MongoQuery
field string
return MongoQuery
        public MongoQuery Exists(string field)
        {
            return this.AppendParameter(field, "$exists", true);
        }