摘要: async static Task TaskRun(string link) { string ip = string.Empty; string errmsg = ""; while (string.IsNullOrEmpty(ip)) { IpList = IpHelper.GetAvilabl 阅读全文
posted @ 2022-05-05 14:29 极客船长 阅读(278) 评论(0) 推荐(0) 编辑
摘要: private static bool PingIp(string strIP) { bool bRet = false; try { Ping pingSend = new Ping(); PingReply reply = pingSend.Send(strIP, 30); if (reply. 阅读全文
posted @ 2022-05-05 14:25 极客船长 阅读(284) 评论(0) 推荐(0) 编辑
摘要: //新增永久图片素材 public string add_matrial(string accesstoke,string picurl,out string errmsg) { string result = string.Empty; errmsg = ""; string addMatrial 阅读全文
posted @ 2022-05-05 14:06 极客船长 阅读(343) 评论(0) 推荐(0) 编辑
摘要: static bool ConsoleEventCallback(int eventType) { if (eventType == 2) { List<Process> pList = Process.GetProcessesByName("chrome").ToList(); try { pLi 阅读全文
posted @ 2022-05-05 13:52 极客船长 阅读(438) 评论(0) 推荐(0) 编辑
摘要: LaunchOptions options = new LaunchOptions { Headless = true, ExecutablePath = @".local-chromium\Win64-901912\chrome-win\chrome.exe", Args = new[] { st 阅读全文
posted @ 2022-05-05 13:47 极客船长 阅读(413) 评论(1) 推荐(0) 编辑