Beispiel #1
0
 // Destroy List
 public static async Task <bool> DestroyList(ITwitterListIdentifier twitterListIdentifier)
 {
     return(await Sync.ExecuteTaskAsync(() => TwitterList.DestroyList(twitterListIdentifier)));
 }
Beispiel #2
0
 public static async Task <bool> DestroyList(string slug, IUserDTO ownerDTO)
 {
     return(await Sync.ExecuteTaskAsync(() => TwitterList.DestroyList(slug, ownerDTO)));
 }
Beispiel #3
0
 public static async Task <bool> DestroyList(string slug, string ownerScreenName)
 {
     return(await Sync.ExecuteTaskAsync(() => TwitterList.DestroyList(slug, ownerScreenName)));
 }
Beispiel #4
0
 public static async Task <bool> DestroyList(long listId)
 {
     return(await Sync.ExecuteTaskAsync(() => TwitterList.DestroyList(listId)));
 }