https://github.com/joeandaverde/socket.io-csharp-client

http://websocket4net.codeplex.com/

http://www.codeproject.com/Articles/463947/Working-with-Sockets-in-Csharp

https://supersocket.codeplex.com/

https://github.com/rdavisau/sockets-for-pcl

http://www.cs.columbia.edu/~lok/csharp/refdocs/System.Net.Sockets/types/Socket.html

https://github.com/xljiulang/NetworkSocket

https://github.com/kerryjiang/SuperSocket

https://github.com/kerryjiang/SuperWebSocket

https://github.com/kerryjiang/SuperSocket.ClientEngine

https://github.com/NetEase/UnitySocketIO

https://github.com/ihaoqihao/FastSocket.Net

https://github.com/ihaoqihao/Redis.Driver.Net

https://github.com/ihaoqihao/Zookeeper.Net

https://github.com/ihaoqihao/Thrift.Net

https://github.com/ihaoqihao/Riak.Driver.Net

https://github.com/kaistseo/UnitySocketIO-WebSocketSharp

https://github.com/vtortola/WebSocketListener

https://github.com/Dem0n13/AsyncSocketServers

https://github.com/paulbatum/WebSocket-Samples

https://github.com/mxinshangshang/CSharp_MyChat

https://github.com/hanyue1006/ChatRoom

https://github.com/FrankFan/MyChatRoom

https://github.com/SaintCat/SocketChat

https://github.com/nswbmw/N-chat

https://github.com/xskogure/SpeechRecognitionWebSocket

http://www.c-sharpcorner.com/UploadFile/bfarley/SocketChatBF11182005013225AM/SocketChatBF.aspx

http://www.codeproject.com/Articles/12893/TCP-IP-Chat-Application-Using-C

http://www.supersocket.net/

http://supersocket.codeplex.com/

https://github.com/kerryjiang/SuperWebSocket

https://logmaster4net.codeplex.com/

https://github.com/kerryjiang/LogMaster4Net

csharp: Socket的更多相关文章

  1. C-Sharp网络编程案例解析(Socket类的使用)

    Server端: using System; using System.Collections.Generic; using System.Text; using System.Net; using ...

  2. c#操作MangoDB 之MangoDB CSharp Driver驱动详解

    序言 MangoDB CSharp Driver是c#操作mongodb的官方驱动. 官方Api文档:http://api.mongodb.org/csharp/2.2/html/R_Project_ ...

  3. Socket Receive 避免 Blocking

    我们知道 Socket Blocking 属性默认true . 表明Socket 处于同步调用 , Connect , 或 Send , Receive 需等待动作 完成才能继续执行. 有一种应用场景 ...

  4. c# TCP Socket通讯基础

    在做网络通讯方面的程序时,必不可少的是Socket通讯. 那么我们需要有一套既定的,简易的通讯流程. 如下: <pre name="code" class="csh ...

  5. .net 调度器怎么实现心跳(socket除了他,没选择吧)

    自己写调度器,就要从tcp通信入手:心跳的实现除了使用socket,想不到其他任何方案. socket基本使用demo: Socket Client: static void Main(string[ ...

  6. Socket实现简单的聊天通信

    最近学习了Socket后,感觉Socket挺好玩的,在博客中看到socket在实时聊天功能的很强大,于是乎就做了一个简单的聊天功能,今天贴出来,能够与大家一起共享,有不对之处,能够给予指出,谢谢! 服 ...

  7. Protobuf实现Android Socket通讯开发教程

    本节为您介绍Protobuf实现Android Socket通讯开发教程,因此,我们需要先了理一下protobuf 是什么? Protocol buffers是一种编码方法构造的一种有效而可扩展的格式 ...

  8. Unity3d socket通信 切换到web版本时报错SecurityException解决办法

    原文地址:传送门 今天苦战了一天,就跟一个Unity切换到web平台的socket通信出错苦苦纠缠了一天,问了好多大牛,但他们的回复都是我没搞过web平台下的通信或者我只专研于pc或者移动平台.看来没 ...

  9. ProtocolBuffers (二) android与PC,C#与Java 利用protobuf 进行无障碍通讯【Socket】

    protobuf 是什么?   Protocol buffers是一种编码方法构造的一种有效而可扩展的格式的数据. 谷歌使用其内部几乎RPC协议和文件格式的所有协议缓冲区. 参考文档 http://c ...

随机推荐

  1. Java对象生命周期

    [TOC] 1. 创建阶段(Created) 为对象分配存储空间 开始构造对象 从父类到子类对static成员进行初始化 父类成员变量按照顺序初始化,递归调用父类的构造方法 子类成员变量按照顺序初始化 ...

  2. Emit动态生成代码

    Emit动态生成代码 引用:秒懂C#通过Emit动态生成代码 首先需要声明一个程序集名称, // specify a new assembly name var assemblyName = new ...

  3. XCode使用自带SVN,SVN命令

    转载http://blog.sina.com.cn/s/blog_68661bd80101phpy.html 这两天响应老板要求,把所有代码放到公司的SVN服务器上,按照我的想法肯定是就苹果组建一个服 ...

  4. android自定义RadioGroup实现可以添加多种布局

    android自带的RadioGroup是继承自LinearLayout,如果布局的时候不是直接写radiobutton,即radiobutton外面还包了一层容器,这时分组是不成功的,因为查找不到r ...

  5. mem_fun 例子

    // functional_mem_fun.cpp // compile with: /EHsc #include <vector> #include <functional> ...

  6. Redis和Memcached的区别

    From: https://www.biaodianfu.com/redis-vs-memcached.html Redis的作者Salvatore Sanfilippo曾经对这两种基于内存的数据存储 ...

  7. openlayers 注册事件例子

    registerEvents:function() { this.events = new OpenLayers.Events(this, this.div, null, true); functio ...

  8. SupportV7包中 SwipeRefreshLayout 修改下拉控件的距离

    //修改下拉距离 ViewTreeObserver vto = mCategoryResults.mSwipeRefreshLayout.getViewTreeObserver(); vto.addO ...

  9. Redis PHP通用类

    找到一个比较全的Redis PHP操作类库,分享给大家 <?php /**  * redis操作类  * 说明,任何为false的串,存在redis中都是空串.  * 只有在key不存在时,才会 ...

  10. java基本加密算法

    简单的java加密算法有: BASE64 严格地说,属于编码格式,而非加密算法 MD5(Message Digest algorithm 5,信息摘要算法) SHA(Secure Hash Algor ...