摘要: /// /// 延迟调用 /// /// /// public static void DelayInvoke(Action method, int delayTime = 2000) { RegularInvoke(method, delayTime, false);... 阅读全文
posted @ 2018-07-04 15:11 会弹猫的吉他 阅读(184) 评论(0) 推荐(0) 编辑
摘要: public class WebServiceHelper { //动态调用web服务 public static object InvokeWebService(string url, string methodname, object[] args) { return WebServiceHelper.Invok... 阅读全文
posted @ 2018-07-04 13:15 会弹猫的吉他 阅读(183) 评论(0) 推荐(0) 编辑
摘要: [DllImport("wininet.dll", CharSet = CharSet.Auto, SetLastError = true)] static extern bool InternetGetCookieEx(string pchURL, string pchCookieName, StringBuilder pchCookieData, ref Sy... 阅读全文
posted @ 2018-07-04 10:16 会弹猫的吉他 阅读(2019) 评论(0) 推荐(0) 编辑