/// <summary> /// 搜索群列表 /// </summary> /// <param name="resultList"></param> /// <param name="listener"></param> /// <returns></returns> public IQQActionFuture SearchGroupGetList(QQGroupSearchList resultList, QQActionListener listener) { var mod = GetModule <GroupModule>(QQModuleType.GROUP); return(mod.SearchGroup(resultList, listener)); }
public IQQActionFuture SearchGroup(QQGroupSearchList resultList, QQActionListener listener = null) { return(PushHttpAction(new SearchGroupInfoAction(Context, listener, resultList))); }
public SearchGroupInfoAction(QQContext context, QQActionEventHandler listener, QQGroupSearchList buddy) : base(context, listener) { this.buddy = buddy; }
public QQActionFuture SearchGroup(QQGroupSearchList resultList, QQActionEventHandler listener) { return(PushHttpAction(new SearchGroupInfoAction(Context, listener, resultList))); }
public SearchGroupInfoAction(IQQContext context, QQActionListener listener, QQGroupSearchList buddy) : base(context, listener) { _buddy = buddy; }