代码改变世界

随笔档案-2017年11月

VS2015 新建 ASP.NET Web应用程序, 此模板尝试加载程序集‘Microsoft.VisualStudio.Web.Project’, 解决方案

2017-11-28 13:48 by Dorisoy, 1328 阅读, 收藏,
摘要: 下载并安装Azure的SDK即可: 阅读全文

构建 Owin 中间件 来获取客户端IP地址

2017-11-21 13:47 by Dorisoy, 1123 阅读, 收藏,
摘要: Not so long ago, we discussed on this blog the possible ways of retrieving the client’s IP address in ASP.NET Web API. With the latest changes in the 阅读全文

多线程通用处理队列类(三)

2017-11-02 12:20 by Dorisoy, 724 阅读, 收藏,
摘要: 使用: 阅读全文

多线程通用处理队列类(二)

2017-11-02 12:06 by Dorisoy, 455 阅读, 收藏,
摘要: 1 public class DownLoadFile 2 { 3 public string FileName { get; set; } 4 5 } 6 /// 7 /// 下载线程队列 8 /// 9 public class DownLoadQueueThread : Que... 阅读全文

多线程通用处理队列类(一)

2017-11-02 11:43 by Dorisoy, 1639 阅读, 收藏,
摘要: 最近实现了一个支持多FTP,同时FTP要多线程上传的小项目,通过对线程池的动态管理,很好的解决了同一时刻允许最大线程和空闲线程时任务自动入队的的问题,贴出来给大家使用: 使用示例: 阅读全文