C# Класс Net.Pokeshot.JiveSdk.Clients.DeletedObjectsClient

Наследование: JiveClient
Показать файл Открыть проект

Private Properties

Свойство Тип Описание

Открытые методы

Метод Описание
DeletedObjectsClient ( string communityUrl, NetworkCredential credentials ) : System
GetDeletedContents ( System.DateTime since = null, List types = null, string sort = "eventDateDesc", int startIndex, int count = 25, List fields = null ) : List

Return a list of entities, each representing a content object that has been deleted.

GetDeletedObject ( string deletedObjectId, List fields = null ) : DeletedObject

Return the specified deleted object entity with the specified fields.

GetDeletedPeople ( System.DateTime since = null, List types = null, string sort = "eventDateDesc", int startIndex, int count = 25, List fields = null ) : List

Return a paginated list of entities, each representing a person object that has been deleted.

GetDeletedPlaces ( System.DateTime since = null, List types = null, string sort = "eventDateDesc", int startIndex, int count = 25, List fields = null ) : List

Return a paginated list of entities, each representing a place object that has been deleted.

Описание методов

DeletedObjectsClient() публичный Метод

public DeletedObjectsClient ( string communityUrl, NetworkCredential credentials ) : System
communityUrl string
credentials System.Net.NetworkCredential
Результат System

GetDeletedContents() публичный Метод

Return a list of entities, each representing a content object that has been deleted.
public GetDeletedContents ( System.DateTime since = null, List types = null, string sort = "eventDateDesc", int startIndex, int count = 25, List fields = null ) : List
since System.DateTime Restricts results to contain entities representing deleted objects removed on or after this date.
types List One or more content object types (discussion, post, file, ...).
sort string Sort order; default returns the most recently deleted objects first. /// eventDateAsc - Sort by the date the content object was removed, in ascending order. /// eventDateDesc - Sort by the date the content object was removed, in descending order. Default if none was specified.
startIndex int Zero-relative index of the first entity to be returned.
count int Maximum number of entities to be returned from Jive at a time.
fields List Fields to be returned in the selected entities.
Результат List

GetDeletedObject() публичный Метод

Return the specified deleted object entity with the specified fields.
public GetDeletedObject ( string deletedObjectId, List fields = null ) : DeletedObject
deletedObjectId string UUID of the deleted object entity to be returned
fields List Fields to be returned
Результат Net.Pokeshot.JiveSdk.Models.DeletedObject

GetDeletedPeople() публичный Метод

Return a paginated list of entities, each representing a person object that has been deleted.
public GetDeletedPeople ( System.DateTime since = null, List types = null, string sort = "eventDateDesc", int startIndex, int count = 25, List fields = null ) : List
since System.DateTime Restricts results to contain entities representing deleted objects removed on or after this date.
types List One or more content object types (discussion, post, file, ...).
sort string Sort order; default returns the most recently deleted objects first. /// eventDateAsc - Sort by the date the content object was removed, in ascending order. /// eventDateDesc - Sort by the date the content object was removed, in descending order. Default if none was specified.
startIndex int Zero-relative index of the first entity to be returned.
count int Maximum number of entities to be returned from Jive at a time.
fields List Fields to be returned in the selected entities.
Результат List

GetDeletedPlaces() публичный Метод

Return a paginated list of entities, each representing a place object that has been deleted.
public GetDeletedPlaces ( System.DateTime since = null, List types = null, string sort = "eventDateDesc", int startIndex, int count = 25, List fields = null ) : List
since System.DateTime Restricts results to contain entities representing deleted objects removed on or after this date.
types List One or more content object types (discussion, post, file, ...).
sort string Sort order; default returns the most recently deleted objects first. /// eventDateAsc - Sort by the date the content object was removed, in ascending order. /// eventDateDesc - Sort by the date the content object was removed, in descending order. Default if none was specified.
startIndex int Zero-relative index of the first entity to be returned.
count int Maximum number of entities to be returned from Jive at a time.
fields List Fields to be returned in the selected entities.
Результат List