How to store the sharepoint List or List Item within the recycle bin of the site while deleting it programmatically ?

Whenever we delete a sharepoint list or list item from the User Interface it get stored within the recycle bin of the site. But when we delete it programmatically it get's deleted permanently.

So what we can do to store the List or List Item within the recycle bin while deleting it programmatically ?

Generally we use the list.Delete() or item.Delete() method to delete the list or item.

Instead of using the Delete() method we can use the Recycle() method
i.e list.Recycle() or item.Recycle(). 


This will store the item within the recycle bin.

Comments

Popular posts from this blog

IRM and the Object Model

This content database has a schema version which is not supported in this farm

Activate and Deactivate Feature through PowerShell