Example #1
0
 /// <summary>
 /// Check if a user is a member of a specific list
 /// </summary>
 public static bool CheckIfUserIsAListMember(ITwitterListIdentifier list, string newUserName)
 {
     return(TwitterListController.CheckIfUserIsAListMember(list, newUserName));
 }
Example #2
0
 /// <summary>
 /// Check if a user is a member of a specific list
 /// </summary>
 public static bool CheckIfUserIsAListMember(ITwitterListIdentifier listIdentifier, IUserIdentifier userIdentifier)
 {
     return(TwitterListController.CheckIfUserIsAListMember(listIdentifier, userIdentifier));
 }
Example #3
0
 /// <summary>
 /// Check if a user is a member of a specific list
 /// </summary>
 public static bool CheckIfUserIsAListMember(string slug, IUserIdentifier owner, IUserIdentifier newUser)
 {
     return(TwitterListController.CheckIfUserIsAListMember(slug, owner, newUser));
 }
Example #4
0
 /// <summary>
 /// Check if a user is a member of a specific list
 /// </summary>
 public static bool CheckIfUserIsAListMember(string slug, string ownerScreenName, string newUserName)
 {
     return(TwitterListController.CheckIfUserIsAListMember(slug, ownerScreenName, newUserName));
 }
Example #5
0
 /// <summary>
 /// Check if a user is a member of a specific list
 /// </summary>
 public static bool CheckIfUserIsAListMember(string slug, long ownerId, long newUserId)
 {
     return(TwitterListController.CheckIfUserIsAListMember(slug, ownerId, newUserId));
 }
Example #6
0
 /// <summary>
 /// Check if a user is a member of a specific list
 /// </summary>
 public static bool CheckIfUserIsAListMember(long listId, IUserIdentifier newUser)
 {
     return(TwitterListController.CheckIfUserIsAListMember(listId, newUser));
 }
Example #7
0
 /// <summary>
 /// Check if a user is a member of a specific list
 /// </summary>
 public static bool CheckIfUserIsAListMember(long listId, string newUserName)
 {
     return(TwitterListController.CheckIfUserIsAListMember(listId, newUserName));
 }