2018年8月28日

DotNetty项目基本了解和介绍

摘要: 一、DotNetty背景介绍 DotNetty是不但使用了C#和.Net平台的技术特点,并且保留了Netty原来绝大部分的编程接口。让我们在使用时,完全可以依照Netty官方的教程来学习和使用DotNetty应用程序,接口文档查看时对应代码多看几次,仔细阅读。 DotNetty同时也是开源的,它的源 阅读全文

posted @ 2018-08-28 17:22 跨界农民工 阅读(5712) 评论(0) 推荐(1)

2018年8月8日

xml解析

摘要: private SubmitResult GetXmlGwSendResult(string result) { if (result.IsNullOrWhiteSpace()) { return null; } XElement el; try { el = XElement.Parse(resu 阅读全文

posted @ 2018-08-08 09:33 跨界农民工 阅读(142) 评论(0) 推荐(0)

StackExchange.Redis性能调优

摘要: https://www.cnblogs.com/qhca/p/9347604.html 阅读全文

posted @ 2018-08-08 08:25 跨界农民工 阅读(206) 评论(0) 推荐(0)

2018年7月10日

C#string转换为Datetime

摘要: DateTime.ParseExact("0710090000", "MMddHHmmss", CultureInfo.CurrentCulture, DateTimeStyles.None); 阅读全文

posted @ 2018-07-10 09:10 跨界农民工 阅读(176) 评论(0) 推荐(0)

2018年5月16日

C# SocketAsyncEventArgs类

摘要: Namespace:System.Net.Sockets Assemblies:System.Net.Sockets.dll, System.dll, netstandard.dll (Represents an asynchronous socket operation)代表一个异步套接字操作: 阅读全文

posted @ 2018-05-16 16:00 跨界农民工 阅读(4163) 评论(0) 推荐(0)

2018年4月26日

Des 加密cbc模式 padding

摘要: using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Security.Cryptography; using System.Text; using System.Threading.Tasks; using Newtonsoft.Json; ... 阅读全文

posted @ 2018-04-26 18:12 跨界农民工 阅读(2513) 评论(0) 推荐(0)

2018年4月9日

短信网关去签名,cmpp2.0 cmpp3.0去掉网关签名

摘要: 联系:qq:79096094,费用:1000元 阅读全文

posted @ 2018-04-09 17:10 跨界农民工 阅读(250) 评论(0) 推荐(0)

2018年2月1日

Linux字符界面安装图形界面XWindow

摘要: https://jingyan.baidu.com/article/219f4bf790f4c7de442d3825.html 阅读全文

posted @ 2018-02-01 17:13 跨界农民工 阅读(306) 评论(0) 推荐(0)

关于http请求指定本地ip

摘要: static void Main(string[] args) { //ssl证书验证问题(没有校验) ServicePointManager.ServerCertificateValidationCallback = (sender, certificate, chain, sslPolicyErrors) => true; var hostname = Dns... 阅读全文

posted @ 2018-02-01 09:58 跨界农民工 阅读(1261) 评论(0) 推荐(0)

2018年1月24日

以流的形式接收Http请求

摘要: IEnumerable IHttpReceiveReport.OnPost(System.Web.HttpContextBase context) { //[{"time":"20161012150400","taskid":"30cf60a756d444b986b9e3909e3b107a","code":"DELIVRD","msg":"提交成功",... 阅读全文

posted @ 2018-01-24 18:05 跨界农民工 阅读(459) 评论(0) 推荐(0)

导航