public static async Task <bool> BlockUser(long userId) { return(await Sync.ExecuteTaskAsync(() => User.BlockUser(userId))); }
public static async Task <bool> BlockUser(string userScreenName) { return(await Sync.ExecuteTaskAsync(() => User.BlockUser(userScreenName))); }
public static async Task <bool> BlockUser(IUserIdentifier userIdentifier) { return(await Sync.ExecuteTaskAsync(() => User.BlockUser(userIdentifier))); }