C# 클래스 Net.Pokeshot.JiveSdk.Clients.DeletedObjectsClient

상속: JiveClient
파일 보기 프로젝트 열기: jivesoftware/JiveDotNetSDK

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