CSMongo.Requests.GetMoreRequest.GetMoreRequest C# (CSharp) 메소드

GetMoreRequest() 공개 메소드

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