MapperRequestAction Enumeration |
Actions for use in
IsRequestAction used to determine
if the mapper is currently performing a specific HttpRequest action.
Namespace:
NetQuarry.Data
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public enum MapperRequestAction
Public Enumeration MapperRequestAction
Members
| Member name | Value | Description |
---|
| PagingNext | 1 |
The mapper is responding to a Next Page request.
To detect any type of paging use Paging.
|
| PagingPrev | 2 |
The mapper is responding to a Previous Page request.
To detect any type of paging use Paging.
|
| Paging | 3 |
The mapper is responding to a Next Page or Previous Page request.
To detect a specific type of paging use PagingNext or PagingPrev.
|
| PageExpansion | 4 |
The mapper is responding to a request to show additional records (beyond the RowsPerPage settings) or is in a
state where additional records are being shown due to a prior request to do so. This could be due to a "Load More"
request or a "Show n" request.
|
See Also