摘要:
1 public class TAjaxListLoginValidateAttribute : FilterAttribute, IAuthorizationFilter 2 { 3 public void OnAuthorization(AuthorizationContext filterContext) 4 { 5 ... 阅读全文
摘要:
参考链接:http://www.cnblogs.com/leocook/p/mq_rabbitmq_0.html 阅读全文
摘要:
参考:https://blogs.msdn.microsoft.com/pfxteam/2009/06/02/the-nature-of-taskcompletionsourcetresult/ 阅读全文
摘要:
参考:https://blogs.msdn.microsoft.com/windowsappdev_cn/2012/04/30/winrt-await/ 阅读全文
摘要:
public class Adapter { static Func, Task> _owinApp; /// /// 默认构造函数 /// public Adapter() { var builder = new AppBuilder(); ... 阅读全文
摘要:
/// /// Autofac容器 /// public class AutofacContainer { public static IContainer Container { get; private set; } public static void Set(IContainer c) { ... 阅读全文
摘要:
一、在App.config中自定义Section,这个使用了SectionGroup xml中的section 需要显示配置自定义的处理程序,即type属性二、创建处理程序 MySectionHandler 执行处理程序代码如下: 注意事项: 1.获取自定义Section,如果是SectionGro 阅读全文
摘要:
一、环境 操作系统:centOs7-x64 二、准备工作 购买SSL/TLS证书 三、部署 1.首先查看“/lib”或“/usr/lib”等系统库文件夹中是否有SSL库文件的名字,该文件名应该是“libssl.so.版本号”(find / -name libssl.so.*),如果没有列出文件名,就 阅读全文
摘要:
参考:https://github.com/guoyunsky/Markdown-Chinese-Demo/edit/master/README.md 阅读全文
摘要:
1.BlockCollection集合是一个拥有阻塞功能的集合,它就是完成了经典生产者消费者的算法功能。 它没有实现底层的存储结构,而是使用了IProducerConsumerCollection接口的几个集合作为底层数据接结构,例如:ConcurrentBag、ConcurrentStack、Co 阅读全文