コード例 #1
0
 public UploadOfflinePictureAction(IQQContext context,
         QQActionListener listener, QQUser user, string file)
     : base(context, listener)
 {
     _user = user;
     _file = file;
 }
コード例 #2
0
 public MarkEmailAction(bool status, List<QQEmail> markList,
         IQQContext context, QQActionListener listener)
     : base(context, listener)
 {
     this.status = status;
     this.markList = markList;
 }
コード例 #3
0
 public GetUserPicAction(IQQContext context, QQActionListener listener,
     CFaceItem cface, QQMsg msg, Stream picOut)
     : base(context, listener)
 {
     this.cface = cface;
     this.msg = msg;
     this.picOut = picOut;
 }
コード例 #4
0
 public GetOffPicAction(IQQContext context, QQActionListener listener,
     OffPicItem offpic, QQMsg msg, Stream picOut)
     : base(context, listener)
 {
     _offpic = offpic;
     _msg = msg;
     _picOut = picOut;
 }
コード例 #5
0
 /**
  * <p>Constructor for GetGroupPicAction.</p>
  *
  * @param context a {@link iqq.im.core.IQQContext} object.
  * @param listener a {@link iqq.im.IQQActionListener} object.
  * @param cface a {@link iqq.im.bean.content.CFaceItem} object.
  * @param msg a {@link iqq.im.bean.QQMsg} object.
  * @param picOut a {@link java.io.OutputStream} object.
  */
 public GetGroupPicAction(IQQContext context, QQActionListener listener,
                                     CFaceItem cface, QQMsg msg, Stream picOut)
     : base(context, listener)
 {
     _cface = cface;
     _msg = msg;
     _picOut = picOut;
 }
コード例 #6
0
 public void Init(IQQContext context)
 {
     for (var i = -1; i < _pollThreadNum; ++i)
     {
         var col = new BlockingCollection<IQQActor>();
         var task = Task.Run(() => Run(col), _cts.Token);
         _actorQueues[i] = new Tuple<BlockingCollection<IQQActor>, Task>(col, task);
     }
 }
コード例 #7
0
 public WebLoginAction(IQQContext context, QQActionListener listener, 
     string username, string password, long uin, string verifyCode)
     : base(context, listener)
 {
     _username = username;
     _password = password;
     _uin = uin;
     _verifyCode = verifyCode;
 }
コード例 #8
0
 public GetDiscussionListAction(IQQContext context, ActionEventListener listener = null)
     : base(context, listener)
 {
 }
コード例 #9
0
 public GetTuringRobotReplyAction(IQQContext context, QQActionListener listener, QQMsg input)
     : base(context, listener)
 {
     _input = input;
 }
コード例 #10
0
 public GetQRCodeAction(IQQContext context, ActionEventListener listener = null) : base(context, listener)
 {
 }
コード例 #11
0
 public SearchGroupInfoAction(IQQContext context, QQActionListener listener, QQGroupSearchList buddy)
     : base(context, listener)
 {
     _buddy = buddy;
 }
コード例 #12
0
 public GetRecentListAction(IQQContext context, QQActionListener listener) : base(context, listener)
 {
 }
コード例 #13
0
 public GetGroupListAction(IQQContext context, QQActionListener listener)
     : base(context, listener)
 {
 }
コード例 #14
0
ファイル: StoreModule.cs プロジェクト: huoshan12345/iQQ.Net
 public StoreModule(IQQContext context)
     : base(context)
 {
 }
コード例 #15
0
 public GetFriendFaceAction(IQQContext context, QQActionListener listener, QQUser user)
     : base(context, listener)
 {
     this._user = user;
 }
コード例 #16
0
 public GetGroupInfoAction(IQQContext context, QQGroup group, ActionEventListener listener = null) : base(context, listener)
 {
     _group = group;
 }
コード例 #17
0
ファイル: WebQQInfoAction.cs プロジェクト: asine/WebQQWeChat
 protected WebQQInfoAction(IQQContext context, ActionEventListener listener = null)
     : base(context, listener)
 {
 }
コード例 #18
0
 public GetOnlineFriendAction(IQQContext context, QQActionListener listener) : base(context, listener)
 {
 }
コード例 #19
0
ファイル: StoreModule.cs プロジェクト: lkmvip/WebQQWeChat
 public StoreModule(IQQContext context) : base(context)
 {
 }
コード例 #20
0
 public GetDiscussionListAction(IQQContext context, ActionEventListener listener = null) : base(context, listener)
 {
 }
コード例 #21
0
ファイル: SendMsgAction.cs プロジェクト: loufq/QQListen
 public SendMsgAction(IQQContext context, QQActionListener listener, QQMsg msg)
     : base(context, listener)
 {
     _msg = msg;
 }
コード例 #22
0
 public LoginEmailAction(IQQContext context, QQActionListener listener)
     : base(context, listener)
 {
 }
コード例 #23
0
 public GetStrangerInfoAction(IQQContext context, QQActionListener listener,
         QQUser user)
     : base(context, listener)
 {
     this.user = user;
 }
コード例 #24
0
 public PollMsgAction(IQQContext context, ActionEventListener listener = null) : base(context, listener)
 {
 }
コード例 #25
0
ファイル: PollMsgAction.cs プロジェクト: huoshan12345/iQQ.Net
 public PollMsgAction(IQQContext context, ActionEventListener listener = null)
     : base(context, listener)
 {
 }
コード例 #26
0
ファイル: WebQQAction.cs プロジェクト: l376571926/WebQQWeChat
 protected WebQQAction(IQQContext context, ActionEventListener listener = null)
     : base(context.GetSerivce <IHttpService>())
 {
     _context       = context;
     OnActionEvent += listener;
 }
コード例 #27
0
ファイル: CheckEmailSig.cs プロジェクト: huoshan12345/iQQ.Net
 public CheckEmailSig(string url, IQQContext context, QQActionListener listener)
     : base(context, listener)
 {
     this._url = url;
 }
コード例 #28
0
ファイル: GetPT4Auth.cs プロジェクト: loufq/QQListen
 public GetPT4Auth(IQQContext context, QQActionListener listener) : base(context, listener)
 {
 }
コード例 #29
0
 public PollMsgAction(IQQContext context, QQActionListener listener) : base(context, listener)
 {
 }
コード例 #30
0
 public ChatModule(IQQContext context) : base(context)
 {
 }
コード例 #31
0
 public GetFriendInfoAction(IQQContext context, QQFriend friend, ActionEventListener listener = null)
     : base(context, listener)
 {
     _friend = friend;
 }
コード例 #32
0
ファイル: LoginModule.cs プロジェクト: lkmvip/WebQQWeChat
 public LoginModule(IQQContext context) : base(context)
 {
 }
コード例 #33
0
 public AccountModule(IQQContext context) : base(context)
 {
 }
コード例 #34
0
ファイル: GetDiscuzListAction.cs プロジェクト: loufq/QQListen
 public GetDiscuzListAction(IQQContext context, QQActionListener listener) : base(context, listener)
 {
 }
コード例 #35
0
 public GetFriendQQNumberAction(IQQContext context, QQFriend friend, ActionEventListener listener = null)
     : base(context, listener)
 {
     _friend = friend;
 }
コード例 #36
0
 public ChannelLoginAction(IQQContext context, ActionEventListener listener = null) : base(context, listener)
 {
 }
コード例 #37
0
 public GetCustomFaceSigAction(IQQContext context, QQActionListener listener)
     : base(context, listener)
 {
 }
コード例 #38
0
 public CheckSigAction(IQQContext context, ActionEventListener listener = null) : base(context, listener)
 {
 }
コード例 #39
0
 public GetSelfInfoAction(IQQContext context, QQActionListener listener)
     : base(context, listener)
 {
 }
コード例 #40
0
 /**
  * <p>Constructor for AbstractHttpAction.</p>
  *
  * @param context  a {@link IQQContext} object.
  * @param listener a {@link QQActionListener} object.
  */
 public GetWebqq(IQQContext context, QQActionListener listener) : base(context, listener)
 {
 }
コード例 #41
0
 public GetOnlineFriendAction(IQQContext context, QQActionListener listener)
     : base(context, listener)
 {
 }
コード例 #42
0
ファイル: QQAction.cs プロジェクト: neophack/WebQQWeChat
 protected QQAction(IQQContext context, ActionEventListener listener = null)
     : base(context.GetSerivce <IHttpService>())
 {
     SetContext(context);
     OnActionEvent += listener;
 }
コード例 #43
0
 public GetGroupInfoAction(IQQContext context, QQGroup group, ActionEventListener listener = null)
     : base(context, listener)
 {
     _group = group;
 }
コード例 #44
0
ファイル: GetVFWebqq.cs プロジェクト: huoshan12345/iQQ.Net
 public GetVFWebqq(IQQContext context, QQActionListener listener)
     : base(context, listener)
 {
 }
コード例 #45
0
ファイル: WebQQAction.cs プロジェクト: huoshan12345/iQQ.Net
 protected WebQQAction(IQQContext context, ActionEventListener listener = null)
     : base(context.GetSerivce<IHttpService>())
 {
     _context = context; 
     OnActionEvent += listener;
 }
コード例 #46
0
 public virtual void Init(IQQContext context)
 {
     Context = context;
 }
コード例 #47
0
 public GetVfwebqqAction(IQQContext context, ActionEventListener listener = null)
     : base(context, listener)
 {
 }
コード例 #48
0
ファイル: GetUserLevelAction.cs プロジェクト: loufq/QQListen
 public GetUserLevelAction(IQQContext context, QQActionListener listener, QQUser user)
     : base(context, listener)
 {
     _user = user;
 }
コード例 #49
0
 public GetQRCodeAction(IQQContext context, ActionEventListener listener = null)
     : base(context, listener)
 {
 }
コード例 #50
0
 public GetCaptchaImageAction(IQQContext context, QQActionListener listener, long uin)
     : base(context, listener)
 {
     _uin = uin;
 }
コード例 #51
0
 public GetCaptchaImageAction(IQQContext context, QQActionListener listener, long uin)
     : base(context, listener)
 {
     _uin = uin;
 }
コード例 #52
0
 public static Task FireNotifyAsync(this IQQContext context, QQNotifyEventType type, object target = null)
 {
     return(context.FireNotifyAsync(QQNotifyEvent.CreateEvent(type, target)));
 }
コード例 #53
0
 public ChannelLoginAction(IQQContext context, QQActionListener listener, QQStatus status)
     : base(context, listener)
 {
     this._status = status;
 }
コード例 #54
0
 public GetSelfInfoAction(IQQContext context, ActionEventListener listener = null) : base(context, listener)
 {
 }
コード例 #55
0
 public GetFriendInfoAction(IQQContext context, QQActionListener listener, QQUser buddy)
     : base(context, listener)
 {
     _buddy = buddy;
 }
コード例 #56
0
 public CheckQRCodeAction(IQQContext context, QQActionListener listener) : base(context, listener)
 {
 }
コード例 #57
0
 public UploadCustomFaceAction(IQQContext context, QQActionListener listener, string file)
     : base(context, listener)
 {
     _file = file;
 }
コード例 #58
0
 public UploadCustomFaceAction(IQQContext context, QQActionListener listener, string file)
     : base(context, listener)
 {
     _file = file;
 }
コード例 #59
0
 public GetGroupInfoAction(IQQContext context, QQActionListener listener, QQGroup group)
     : base(context, listener)
 {
     this._group = group;
 }
コード例 #60
0
 public GetOnlineFriendsAction(IQQContext context, ActionEventListener listener = null) : base(context, listener)
 {
 }