Class RecycleBinQueryOptions
Defines the recycle bin query criteria
Inheritance
System.Object
RecycleBinQueryOptions
Namespace: PnP.Core.Model.SharePoint
Assembly: PnP.Core.dll
Syntax
public class RecycleBinQueryOptions : object
Defines the recycle bin query criteria
public class RecycleBinQueryOptions : object
Gets or sets a Boolean value that specifies whether to sort in ascending order. Defaults to true.
public bool IsAscending { get; set; }
System.Boolean
|
Gets or sets the Recycle Bin stage of items to return in the query. Defaults to FirstStageRecycleBin.
public RecycleBinItemState ItemState { get; set; }
RecycleBinItemState
|
Gets or sets the column by which to order the Recycle Bin query. Defaults to Title
public RecycleBinOrderBy OrderBy { get; set; }
RecycleBinOrderBy
|
Gets or sets a string used to get the next set of rows in the page.
public string PagingInfo { get; set; }
System.String
|
Gets or sets a limit for the number of items returned in the query per page. Defaults to 50.
public int RowLimit { get; set; }
System.Int32
|
Gets or sets a Boolean value that specifies whether to get items deleted by other users. Defaults to false.
public bool ShowOnlyMyItems { get; set; }
System.Boolean
|