CSMongo.Requests.GetMoreRequest.GetMoreRequest C# (CSharp) Method

GetMoreRequest() public method

Creates a new GetMoreRequest with the provided MongoCursor
public GetMoreRequest ( MongoCollection collection, MongoCursor cursor, int count ) : System
collection MongoCollection
cursor MongoCursor
count int
return System
        public GetMoreRequest(MongoCollection collection, MongoCursor cursor, int count)
            : base(OpCodeTypes.GetMore, collection)
        {
            this.Cursor = cursor;
            this.Count = count;
        }