ListItemCollectionPosition.PagingInfo property
Gets or sets a value that specifies information, as name-value pairs, required to get the next page of data for a list view.
Namespace: Microsoft.SharePoint.Client
Assembly: Microsoft.SharePoint.Client (in Microsoft.SharePoint.Client.dll)
Syntax
'Declaration
Public Property PagingInfo As String
Get
Set
'Usage
Dim instance As ListItemCollectionPosition
Dim value As String
value = instance.PagingInfo
instance.PagingInfo = value
public string PagingInfo { get; set; }
Property value
Type: System.String
Returns a String instance representing the information, as name-value pairs, required to get the next page of data for a list view.
Remarks
If a name appears more than once, one value must be used. It must conform to the following ABNF: PagingInfo = 0*1(NameValuePair 0*601(“&” NameValuePair))NameValuePair = Name “=” ValueValue = 1*(Alphanum | Mark | Escaped)Name = 1*(Alphanum | Mark)Escaped = “%” HEXDIG HEXDIGMark = “-“ | “_” | “.” | “!” | “~” | “*” | “’” | “(“ | “)”Alphanum = DIGIT | ALPHA
See also
Reference
ListItemCollectionPosition class