SP.RecycleBinItem object
Represents a Recycle Bin item in the Recycle Bin of a site or a site collection.
Last modified: March 09, 2015
Applies to: apps for SharePoint | SharePoint Foundation 2013 | SharePoint Server 2013
var object = new SP.RecycleBinItem()
The RecycleBinItem object has the following members.
Constructor
The RecycleBinItem object has the following constructor.
|
Constructor |
Description |
|---|---|
|
Initializes a new instance of the SP.RecycleBinItem object. |
Methods
The RecycleBinItem object has the following methods.
|
Method |
Description |
|---|---|
|
Permanently deletes the Recycle Bin item. |
|
|
|
|
|
Restores the Recycle Bin item to its original location. |
Properties
The RecycleBinItem object has the following properties.
|
Property |
Description |
|---|---|
|
Gets a value that specifies the user who created the Recycle Bin item. |
|
|
Gets a value that specifies the user who deleted the Recycle Bin item. |
|
|
Gets a value that specifies when the Recycle Bin item was moved to the Recycle Bin. |
|
|
Gets a value that specifies the site relative URL of the list or folder that originally contained the Recycle Bin item. |
|
|
Gets a value that specifies the identifier of the Recycle Bin item. |
|
|
Gets a value that specifies the Recycle Bin stage of the Recycle Bin item. |
|
|
Gets a value that specifies the type of the Recycle Bin item. |
|
|
Gets a value that specifies the leaf name of the Recycle Bin item. |
|
|
Gets a value that specifies the size of the Recycle Bin item in bytes. |
|
|
Gets a value that specifies the title of the Recycle Bin item. |
The following example creates an input button on an application page that displays the title and Id of the first item in the Recycle Bin of the current site.
<asp:Content ID="Main" ContentPlaceHolderID="PlaceHolderMain" runat="server"> <script type="text/ecmascript" language="ecmascript"> var recycleItemCollection; function runCode() { var clientContext = new SP.ClientContext.get_current(); if (clientContext != undefined && clientContext != null) { var site = clientContext.get_site(); this.recycleItemCollection = site.get_recycleBin(); clientContext.load(this.recycleItemCollection); clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed)); } } function onQuerySucceeded() { if (this.recycleItemCollection.get_count() > 0) { var item = this.recycleItemCollection.itemAt(0); var id = item.get_id(); var title = item.get_title(); alert('Title: ' + title + '\n' + 'Item ID: ' + id + '\n'); } Else { alert("The Recycle Bin is empty." } } function onQueryFailed(sender, args) { alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace()); } </script> <input id="Button1" type="button" value="Run Code" onclick="runCode()" /> </asp:Content>
Endpoint URI structure
http://<sitecollection>/<site>/_api/web/RecycleBin(recyclebinitemid)