.NET C#
文章平均质量分 78
warrior21st
这个作者很懒,什么都没留下…
展开
-
C# 操作INI文件的函数 INIClass
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace InfoBank{ public class INIClass { // 声明INI文件的写操作函数 WritePrivateProfileS转载 2014-09-10 10:04:42 · 1445 阅读 · 0 评论 -
.NET WebApi上传文件接口(带其他参数)
using System;using System.Collections.Generic;using System.Data;using System.Linq;using System.Net;using System.Net.Http;using System.Web.Http;using Newtonsoft.Json;using System.Thread原创 2017-02-28 14:51:47 · 8303 阅读 · 2 评论 -
C#发起带证书的http请求(通常用于微信发红包)
/// /// 带证书请求 /// /// 请求的地址 /// 超时时间 /// 请求的字符串 /// 是否是POST /// 字符集编码 /// 证书路径 /// 证书密码 /// 消息 ///原创 2017-02-27 15:55:11 · 3338 阅读 · 0 评论 -
C# CulPost,用于微信上传多媒体文件中的图片
/// /// 向指定的URL地址发起一个POST请求,同时可以上传一些数据项以及上传文件。 /// /// 要请求的URL地址 /// 要上传的文件路径 /// 服务器的返回结果 public string CulPost(string url, string filepath)原创 2017-02-27 16:07:23 · 659 阅读 · 0 评论 -
C# 发起普通http请求
public class NetHelper { private static NetHelper _instance = new NetHelper(); public static NetHelper Instance { get { r原创 2017-02-27 16:13:52 · 318 阅读 · 0 评论 -
C# 队列池
public class QueueServicePool { private static QueueServicePool _instance = new QueueServicePool(); public static QueueServicePool Instacne { get原创 2017-03-31 16:50:26 · 774 阅读 · 0 评论