Class CamlQueryOptions
Options for making a CAML query to SharePoint Online
Inheritance
System.Object
CamlQueryOptions
Namespace: PnP.Core.Model.SharePoint
Assembly: PnP.Core.dll
Syntax
public class CamlQueryOptions : object
Options for making a CAML query to SharePoint Online
public class CamlQueryOptions : object
Can the query return incremental results
public bool? AllowIncrementalResults { get; set; }
System.Nullable<System.Boolean>
|
Return dates in UTC format
public bool? DatesInUtc { get; set; }
System.Nullable<System.Boolean>
|
Specifies the server relative URL of a list folder from which results will be returned
public string FolderServerRelativeUrl { get; set; }
System.String
|
Value that specifies information, as name-value pairs, required to get the next page of data for a list view
public string PagingInfo { get; set; }
System.String
|
Caml query to execute
public string ViewXml { get; set; }
System.String
|