09 2016 档案

摘要:C#实现通过Gzip来对数据进行压缩和解压 阅读全文
posted @ 2016-09-26 17:48 FrankYou 阅读(6029) 评论(0) 推荐(0)
摘要:C#代码实现对HTTP POST参数进行排序 阅读全文
posted @ 2016-09-26 16:34 FrankYou 阅读(2081) 评论(0) 推荐(1)
摘要:*.cer格式公钥证书及*.pfx格式私钥证书 阅读全文
posted @ 2016-09-26 16:30 FrankYou 阅读(5218) 评论(0) 推荐(0)
摘要:private static byte[] Decode(byte[] packet) { var i = packet.Length - 1; while (packet[i] == 0) { --i; } var temp = new byte[i + 1]; Array.Copy(packet, temp, i + 1); ... 阅读全文
posted @ 2016-09-05 14:05 FrankYou 阅读(603) 评论(0) 推荐(0)
摘要:The DEFAULT System.Net.ServicePointManager.SecurityProtocol in both .NET 4.0/4.5 is: SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls. .NET 4.0 su 阅读全文
posted @ 2016-09-02 17:00 FrankYou 阅读(4665) 评论(1) 推荐(0)