MongoDB.MapReduce.Limit C# (CSharp) Method

Limit() public method

Number of objects to return from collection
public Limit ( long limit ) : MapReduce
limit long
return MapReduce
        public MapReduce Limit(long limit)
        {
            TryModify();
            Command.Limit = limit;
            return this;
        }