2018年11月13日

C# SocketUdpServer

摘要: public interface ISocketUdpServer { void Start(); void Stop(); int SendData(byte[] data, IPEndPoint remoteEndPoint); event ReceiveDataHandler ReceivedDataEven... 阅读全文

posted @ 2018-11-13 16:43 jonney_wang 阅读(3172) 评论(0) 推荐(0) 编辑

C# HttpHelper

摘要: public enum HttpVerb { Get, Post } public class HttpHelper { private string _contentType = "application/x-www-form-urlencoded"; //private stri... 阅读全文

posted @ 2018-11-13 16:40 jonney_wang 阅读(520) 评论(0) 推荐(0) 编辑

导航