コード例 #1
0
 public static async Task <ITweetList> UpdateList(string slug, IUserIdentifier ownerDTO, IListUpdateParameters parameters)
 {
     return(await Sync.ExecuteTaskAsync(() => TweetList.UpdateList(slug, ownerDTO, parameters)));
 }
コード例 #2
0
 public static async Task <ITweetList> UpdateList(ITweetListDTO tweetListDTO, IListUpdateParameters parameters)
 {
     return(await Sync.ExecuteTaskAsync(() => TweetList.UpdateList(tweetListDTO, parameters)));
 }
コード例 #3
0
 public static async Task <ITweetList> UpdateList(long listId, IListUpdateParameters parameters)
 {
     return(await Sync.ExecuteTaskAsync(() => TweetList.UpdateList(listId, parameters)));
 }
コード例 #4
0
 public static async Task <ITweetList> UpdateList(string slug, string ownerScreenName, IListUpdateParameters parameters)
 {
     return(await Sync.ExecuteTaskAsync(() => TweetList.UpdateList(slug, ownerScreenName, parameters)));
 }