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