Exemplo n.º 1
0
 /// <summary>
 /// Destroy a list
 /// </summary>
 public static bool DestroyList(string slug, string ownerScreenName)
 {
     return(TwitterListController.DestroyList(slug, ownerScreenName));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Destroy a list
 /// </summary>
 public static bool DestroyList(string slug, long ownerId)
 {
     return(TwitterListController.DestroyList(slug, ownerId));
 }
Exemplo n.º 3
0
 /// <summary>
 /// Destroy a list
 /// </summary>
 public static bool DestroyList(string slug, IUserDTO ownerDTO)
 {
     return(TwitterListController.DestroyList(slug, ownerDTO));
 }
Exemplo n.º 4
0
 /// <summary>
 /// Destroy a list
 /// </summary>
 public static bool DestroyList(long listId)
 {
     return(TwitterListController.DestroyList(listId));
 }
Exemplo n.º 5
0
        // Destroy List

        /// <summary>
        /// Destroy a list
        /// </summary>
        public static bool DestroyList(ITwitterListIdentifier list)
        {
            return(TwitterListController.DestroyList(list));
        }
 /// <summary>
 /// Destroy a list
 /// </summary>
 public static bool DestroyList(string slug, IUserIdentifier owner)
 {
     return(TwitterListController.DestroyList(slug, owner));
 }