摘要:
/// /// 延迟调用 /// /// /// public static void DelayInvoke(Action method, int delayTime = 2000) { RegularInvoke(method, delayTime, false);... 阅读全文
posted @ 2018-07-04 15:11
会弹猫的吉他
阅读(192)
评论(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
会弹猫的吉他
阅读(191)
评论(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
会弹猫的吉他
阅读(2028)
评论(0)
推荐(0)