Gets or sets the maximum number of result pages to return.

Namespace: Simol
Assembly: Simol (in Simol.dll) Version: 1.0.0.0

Syntax

C#
public int MaxResultPages { get; set; }
Visual Basic
Public Property MaxResultPages As Integer
	Get
	Set
Visual C++
public:
property int MaxResultPages {
	int get ();
	void set (int value);
}

Field Value

The maximum pages of results.

Remarks

By default SimpleDB limits the number of items returned for a select request to a maximum of 100 items. The "limit" keyword allows you to change the per-request maximum to any value between 1 and 250.

Simol allows you to collect multiple pages of results in single call by reissuing the select command query to SimpleDB until the desired number of results pages have been retrieved. The default value of MaxResultPages is zero, which will return all available results.

See Also