
NET
newtee
Sometimes, you need to step outside, get some air, and remind yourself of who you are and who you want to be
展开
-
敏感词汇过滤DFA算法
敏感词汇过滤DFA算法原创 2016-03-06 12:53:08 · 903 阅读 · 0 评论 -
.NET ClrProfiler ILRewrite 商业级APM原理
Demo:https://github.com/caozhiyuan/ClrProfiler.Trace背景为了实现自动、无依赖地跟踪分析应用程序性能(达到商业级APM效果),作者希望能动态修改应用字节码。在相关调研之后,决定采用profiler api进行实现。介绍作者将对.NET ClrProfiler 字节码重写技术进行相关阐述。Profiler是微软提供的一套跟踪和分析...原创 2019-02-16 14:49:43 · 465 阅读 · 0 评论 -
SOAP系列目录
1、协议分析2、WebService、WCF介绍3、HttpClientHelper实现webservice调用4、SoapCore介绍原创 2018-07-15 15:09:40 · 697 阅读 · 0 评论 -
Error Handling in SOLID C# .NET – The Operation Result Approach
想看看大家对第三种方式的意见Error handling often brings down an otherwise good design, this article offers an approach to standardize and simplify your error handling particularly in SOLID applications.Problem...转载 2018-07-23 10:39:38 · 285 阅读 · 0 评论 -
RSA实现登录页面密码加密(ASP.NET MVC)
Demo:http://download.youkuaiyun.com/detail/zhuankeshumo/6668903IntroductionRSA实现登录页面密码加密 实现方式:ASP.NET MVCRSA是第一个比较完善的公开密钥算法,它既能用于加密,也能用于数字签名。RSA以它的三个发明者Ron Rivest, Adi Shamir, Leonard Adleman的名字首字母命名,这个算法经受...原创 2013-12-05 23:41:01 · 5425 阅读 · 1 评论 -
webservice的两种调用方式
webservice的两种安装方式原创 2016-04-02 10:00:30 · 2840 阅读 · 0 评论 -
.NET ThreadPool算法
.NET ThreadPool相关算法记录1、ManagedThreadPool(corefx).net4.0之前只有全局队列,为了解决全局队列多线程竞争使用问题,引入work-stealing算法(golang scheduler也是这个算法)。内部是通过ThreadLocalWorkStealingQueue实现。详细说明:(http://www.danielmoth.com/...原创 2019-04-07 06:58:05 · 273 阅读 · 0 评论