Quantcast
Channel: SharePoint 2013 - Development and Programming forum
Viewing all articles
Browse latest Browse all 7589

Download Recycle Bin data from Sharepoint online using CSOM C#

$
0
0

Hi,

I want to download Recycle bin data from sharepoint online using CSOM C#.

What I know that by following code I will be able to connect to recycle bin.

     Web web = clientContext.Web; 
     RecycleBinItemCollection rbiColl = web.RecycleBin; 
     clientContext.Load(rbiColl);  
     clientContext.ExecuteQuery(); 
     foreach (RecycleBinItem rbiItem in rbiColl) 
     {
        Console.WriteLine(rbiItem.Title);
     } 

But my question is how to download the recycle bin whole data to my local directory.

Thanks

Palak Jain


Viewing all articles
Browse latest Browse all 7589

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>