C# 클래스 Kippt.KipptList

파일 보기 프로젝트 열기: Haythem/Kippt.NET

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
Create ( KipptClient client ) : KipptList

Creates a list.

* Title (required).

CreateAsync ( KipptClient client ) : void

Creates a list.

* Title (required).

Delete ( KipptClient client ) : void

Deleted a list.

DeleteAsync ( KipptClient client ) : void

Deleted a list.

FollowList ( KipptClient client, int listId ) : void

Follow a list.

FollowListAsync ( KipptClient client, int listId ) : void

Follow a list.

GetList ( KipptClient client, int id ) : KipptList

Returns a list by its id.

GetListAsync ( KipptClient client, int id ) : void

Returns a list by its id.

GetListFollowings ( KipptClient client, int listId, int limit, int offset ) : KipptUserCollection

Returns list of users following a list.

GetListFollowingsAsync ( KipptClient client, int listId, int limit, int offset ) : void

Returns list of users following a list.

GetLists ( KipptClient client ) : KipptListCollection

Returns a collection of lists.

Results are paginated. The default number of returned lists is 20. Pagination information are stored in the Meta property of KipptListCollection class.

GetLists ( KipptClient client, int limit ) : KipptListCollection

Returns a collection of lists.

GetLists ( KipptClient client, int limit, int offset ) : KipptListCollection

Returns a collection of lists.

GetListsAsync ( KipptClient client ) : void

Returns a collection of lists.

Results are paginated. The default number of returned lists is 20. Pagination information are stored in the Meta property of KipptListCollection class.

GetListsAsync ( KipptClient client, int limit ) : void

Returns a collection of lists.

GetListsAsync ( KipptClient client, int limit, int offset ) : void

Returns a collection of lists.

GetUserLists ( KipptClient client, int userId, int limit, int offset ) : KipptListCollection

Returns lists of a user

GetUserListsAsync ( KipptClient client, int userId, int limit, int offset ) : void

Returns lists of a user

IsFollowing ( KipptClient client, int listId ) : bool

Checks whether the logged in user is following a list.

IsFollowingAsync ( KipptClient client, int listId ) : void

Checks whether the logged in user is following a list.

Search ( KipptClient client, string query, int limit, int offset ) : KipptListCollection

Search for a list.

SearchAsync ( KipptClient client, string query, int limit, int offset ) : void

Search for a list.

UnFollowList ( KipptClient client, int listId ) : void

Unfollow a list.

UnFollowListAsync ( KipptClient client, int listId ) : void

Unfollow a list.

Update ( KipptClient client ) : KipptList

Updates a list.

UpdateAsync ( KipptClient client ) : void

Updates a list.

메소드 상세

Create() 공개 메소드

Creates a list.
* Title (required).
public Create ( KipptClient client ) : KipptList
client KipptClient instance.
리턴 KipptList

CreateAsync() 공개 메소드

Creates a list.
* Title (required).
public CreateAsync ( KipptClient client ) : void
client KipptClient instance.
리턴 void

Delete() 공개 메소드

Deleted a list.
public Delete ( KipptClient client ) : void
client KipptClient instance.
리턴 void

DeleteAsync() 공개 메소드

Deleted a list.
public DeleteAsync ( KipptClient client ) : void
client KipptClient instance.
리턴 void

FollowList() 공개 정적인 메소드

Follow a list.
public static FollowList ( KipptClient client, int listId ) : void
client KipptClient instance.
listId int List id.
리턴 void

FollowListAsync() 공개 정적인 메소드

Follow a list.
public static FollowListAsync ( KipptClient client, int listId ) : void
client KipptClient instance.
listId int List id.
리턴 void

GetList() 공개 정적인 메소드

Returns a list by its id.
public static GetList ( KipptClient client, int id ) : KipptList
client KipptClient instance.
id int List id.
리턴 KipptList

GetListAsync() 공개 정적인 메소드

Returns a list by its id.
public static GetListAsync ( KipptClient client, int id ) : void
client KipptClient instance.
id int List id.
리턴 void

GetListFollowings() 공개 정적인 메소드

Returns list of users following a list.
public static GetListFollowings ( KipptClient client, int listId, int limit, int offset ) : KipptUserCollection
client KipptClient instance.
listId int List id.
limit int End index.
offset int Start index.
리턴 KipptUserCollection

GetListFollowingsAsync() 공개 정적인 메소드

Returns list of users following a list.
public static GetListFollowingsAsync ( KipptClient client, int listId, int limit, int offset ) : void
client KipptClient instance.
listId int List id.
limit int End index.
offset int Start index.
리턴 void

GetLists() 공개 정적인 메소드

Returns a collection of lists.
Results are paginated. The default number of returned lists is 20. Pagination information are stored in the Meta property of KipptListCollection class.
public static GetLists ( KipptClient client ) : KipptListCollection
client KipptClient instance.
리턴 KipptListCollection

GetLists() 공개 정적인 메소드

Returns a collection of lists.
public static GetLists ( KipptClient client, int limit ) : KipptListCollection
client KipptClient instance.
limit int End index.
리턴 KipptListCollection

GetLists() 공개 정적인 메소드

Returns a collection of lists.
public static GetLists ( KipptClient client, int limit, int offset ) : KipptListCollection
client KipptClient instance.
limit int End index.
offset int Start index.
리턴 KipptListCollection

GetListsAsync() 공개 정적인 메소드

Returns a collection of lists.
Results are paginated. The default number of returned lists is 20. Pagination information are stored in the Meta property of KipptListCollection class.
public static GetListsAsync ( KipptClient client ) : void
client KipptClient instance.
리턴 void

GetListsAsync() 공개 정적인 메소드

Returns a collection of lists.
public static GetListsAsync ( KipptClient client, int limit ) : void
client KipptClient instance.
limit int End index.
리턴 void

GetListsAsync() 공개 정적인 메소드

Returns a collection of lists.
public static GetListsAsync ( KipptClient client, int limit, int offset ) : void
client KipptClient instance.
limit int End index.
offset int Start index.
리턴 void

GetUserLists() 공개 정적인 메소드

Returns lists of a user
public static GetUserLists ( KipptClient client, int userId, int limit, int offset ) : KipptListCollection
client KipptClient instance.
userId int User id.
limit int End index.
offset int Start index.
리턴 KipptListCollection

GetUserListsAsync() 공개 정적인 메소드

Returns lists of a user
public static GetUserListsAsync ( KipptClient client, int userId, int limit, int offset ) : void
client KipptClient instance.
userId int User id.
limit int End index.
offset int Start index.
리턴 void

IsFollowing() 공개 정적인 메소드

Checks whether the logged in user is following a list.
public static IsFollowing ( KipptClient client, int listId ) : bool
client KipptClient instance.
listId int List id.
리턴 bool

IsFollowingAsync() 공개 정적인 메소드

Checks whether the logged in user is following a list.
public static IsFollowingAsync ( KipptClient client, int listId ) : void
client KipptClient instance.
listId int List id.
리턴 void

Search() 공개 정적인 메소드

Search for a list.
public static Search ( KipptClient client, string query, int limit, int offset ) : KipptListCollection
client KipptClient instance.
query string Query.
limit int End index.
offset int Start index.
리턴 KipptListCollection

SearchAsync() 공개 정적인 메소드

Search for a list.
public static SearchAsync ( KipptClient client, string query, int limit, int offset ) : void
client KipptClient instance.
query string Query.
limit int End index.
offset int Start index.
리턴 void

UnFollowList() 공개 정적인 메소드

Unfollow a list.
public static UnFollowList ( KipptClient client, int listId ) : void
client KipptClient instance.
listId int List id.
리턴 void

UnFollowListAsync() 공개 정적인 메소드

Unfollow a list.
public static UnFollowListAsync ( KipptClient client, int listId ) : void
client KipptClient instance.
listId int List id.
리턴 void

Update() 공개 메소드

Updates a list.
public Update ( KipptClient client ) : KipptList
client KipptClient instance.
리턴 KipptList

UpdateAsync() 공개 메소드

Updates a list.
public UpdateAsync ( KipptClient client ) : void
client KipptClient instance.
리턴 void