private void GetContactList() { Task.Run(() => { //微信联系人获取 _WeChatContactClient.GetContactList(_WeChatLoginClient.LoginResponse); //微信群获取 LogHelper.Default.LogDay("微信初始化后,主动进行群列表获取"); LogHelper.Default.LogPrint("微信初始化后,主动进行群列表获取", 2); _WeChatContactClient.GetBatchContacts(_WeChatLoginClient.LoginResponse, _WeChatLoginClient.ChatSetArray); }); }
private void GetBatchContacts(string[] userNameArray) { var result = _WeChatContactClient.GetBatchContacts(_WeChatLoginClient.LoginResponse, userNameArray); }