Class PagingOptions
Query parameters for pagination service requests.
Namespace: Unity.Services.Friends.Options
Syntax
public class PagingOptions
Properties
Limit
Maximum records to return per page. The default value is 50.
Declaration
public int Limit { get; set; }
Property Value
| Type | Description |
|---|---|
| Int32 |
Offset
Maximum offset for pagination. The default value is 0.
Declaration
public int Offset { get; set; }
Property Value
| Type | Description |
|---|---|
| Int32 |
Methods
IsValid()
Check if the option is valid.
Declaration
public bool IsValid()
Returns
| Type | Description |
|---|---|
| Boolean | Returns true when the options is valid. False otherwise. |