CSMongo.Query.MongoQuery.Size C# (CSharp) Метод

Size() публичный Метод

Finds fields that match all value within the record
public Size ( string field, int size ) : MongoQuery
field string
size int
Результат MongoQuery
        public MongoQuery Size(string field, int size)
        {
            return this.AppendParameter(field, "$size", size);
        }