RecycleBinItem class
SharePoint Online
Represents a Recycle Bin item in the Recycle Bin of a site or a site collection.
Namespace: Microsoft.SharePoint.Client
Assembly: Microsoft.SharePoint.Client (in Microsoft.SharePoint.Client.dll)
This code example displays the title and identifier of the first item in the Recycle Bin of the specified site.
using System; using Microsoft.SharePoint.Client; namespace Microsoft.SDK.SharePointFoundation.Samples { class RecycleBinItemExample { static void Main() { string siteUrl = "http://MyServer/sites/MySiteCollection"; ClientContext clientContext = new ClientContext(siteUrl); Site collSite = clientContext.Site; RecycleBinItemCollection collRBI = collSite.RecycleBin; clientContext.Load(collRBI); clientContext.ExecuteQuery(); if (collRBI.Count > 0) { RecycleBinItem rbiItem = collRBI[0]; Console.WriteLine("Title: {0}", rbiItem.Title); Console.WriteLine("Item ID: {0}", rbiItem.Id); } else { Console.WriteLine("The Recycle Bin is empty."); } } } }
Show: