Exemplo n.º 1
0
 public static void ExecuteAccountSelectAction(
     AccountSelectionAction action, IEnumerable<TwitterAccount> defaultSelected,
     Action<IEnumerable<TwitterAccount>> after)
 {
     ExecuteAccountSelectAction(new AccountSelectDescription
     {
         AccountSelectionAction = action,
         SelectionAccounts = defaultSelected,
         Callback = after
     });
 }
Exemplo n.º 2
0
 public static void ExecuteAccountSelectAction(
     AccountSelectionAction action, IEnumerable <TwitterAccount> defaultSelected,
     Action <IEnumerable <TwitterAccount> > after)
 {
     ExecuteAccountSelectAction(new AccountSelectDescription
     {
         AccountSelectionAction = action,
         SelectionAccounts      = defaultSelected,
         Callback = after
     });
 }
Exemplo n.º 3
0
 public static void ExecuteAccountSelectAction(
     AccountSelectionAction action, TwitterStatus targetStatus,
     IEnumerable<AuthenticateInfo> defaultSelected, Action<IEnumerable<AuthenticateInfo>> after)
 {
     var handler = OnExecuteAccountSelectActionRequested;
     if (handler != null)
         handler(action, targetStatus, defaultSelected, after);
 }