예제 #1
0
 /// <summary>
 /// Gets a collection of all bookmark folders of the current user
 /// </summary>
 /// <param name="options"></param>
 /// <returns></returns>
 public async Task <IEnumerable <BookmarkFolderInfo> > GetBookmarkFoldersAsync(RequestOptions options = null)
 {
     return((await Client.ApiClient.GetCurrentUserBookmarkFoldersAsync(options).ConfigureAwait(false)).Select(folder => BookmarkFolderInfo.Create(Client, folder)));
 }