WebSocketSharp中WebSocket类
websocket-sharp.clone,
Version=1.0.2.39869
WebSocket由方法调用事件改为实例化委托调用,两种构造
1.构造函数
第一种
//
// 摘要:
// Initializes a new instance of the WebSocketSharp.WebSocket class with the specified
// WebSocket URL and subprotocols.
//
// 参数:
// url:
// A System.String that represents the WebSocket URL to connect.
//
// cancellationToken:
// The System.Threading.CancellationToken used to cancel websocket operations.
//
// fragmentSize:
// Set the size of message packages. Smaller size equals less memory overhead when
// sending streams.
//
// onOpen:
// Delegate to be invoked when the WebSocket connection has been established.
//
// onClose:
// Delegate to be invoked when the WebSocket connection has been closed.
//
// onError:
// Delegate to be invoked when the WebSocketSharp.WebSocket gets an error.
//
// protocols:
// An array of System.String that contains the WebSocket subprotocols if any. Each
// value of protocols must be a token defined in http://tools.ietf.org/html/rfc2616#section-2.2.
//
// onMessage:
// Delegate to be invoked when the WebSocketSharp.WebSocket receives a message.
//
// 异常:
// T:System.ArgumentException:
// url is invalid.
// -or-
// protocols is invalid.
//
// T:System.ArgumentNullException:
// url is null.
public WebSocket(string url, CancellationToken cancellationToken = default(CancellationToken), int fragmentSize = , Func<Task> onOpen = null, Func<CloseEventArgs, Task> onClose = null, Func<MessageEventArgs, Task> onMessage = null, Func<ErrorEventArgs, Task> onError = null, params string[] protocols);
参数说明:
url:要连接websocket url连接字符串
cancellationToken:用于取消websocket操作,线程
fragmentSize:消息包大小
onOpen:建立连接时调用的委托
onClose:连接关闭时调用的位图
onError:委托在WebSocketSharp时调用。WebSocket得到一个错误。
protocols:协议,每一个协议的值必须是在http://tools.ietf.org/html/rfc2616#section-2.2中定义的令牌
onMessage:WebSocket接收到一条消息
异常:
System.ArgumentException:URL无效或协议无效
System.ArgumentNullException:URL为空
第二种
//
// 摘要:
// Initializes a new instance of the WebSocketSharp.WebSocket class with the specified
// WebSocket URL and subprotocols.
//
// 参数:
// url:
// A System.String that represents the WebSocket URL to connect.
//
// sslAuthConfiguration:
// A ClientSslAuthConfiguration for securing the connection.
//
// cancellationToken:
// The System.Threading.CancellationToken used to cancel websocket operations.
//
// fragmentSize:
//
// onOpen:
// Delegate to be invoked when the WebSocket connection has been established.
//
// onClose:
// Delegate to be invoked when the WebSocket connection has been closed.
//
// onError:
// Delegate to be invoked when the WebSocketSharp.WebSocket gets an error.
//
// protocols:
// An array of System.String that contains the WebSocket subprotocols if any. Each
// value of protocols must be a token defined in http://tools.ietf.org/html/rfc2616#section-2.2.
//
// 异常:
// T:System.ArgumentException:
// url is invalid.
// -or-
// protocols is invalid.
//
// T:System.ArgumentNullException:
// url is null.
public WebSocket(string url, ClientSslConfiguration sslAuthConfiguration, CancellationToken cancellationToken = default(CancellationToken), int fragmentSize = , Func<Task> onOpen = null, Func<CloseEventArgs, Task> onClose = null, Func<MessageEventArgs, Task> onMessage = null, Func<ErrorEventArgs, Task> onError = null, params string[] protocols);
和第一种唯一区别多了一个身份验证sslAuthConfiguration
2.属性
Cookies:获取websocket中http cookie
Extensions:获取websocket扩展
IsSecure:获取是否安全连接
Origin:获取或设置http标头
Protocol:获取子协议
ReadyState:获取联系状态,分别是Connecting、Open、Closing和Closed四个状态
WaitTime:获取设置ping和关闭响应时间,毫秒
3.方法
Close()、Close(CloseStatusCode code)、Close(CloseStatusCode code, string reason);:分为直接关闭、状态码关闭、状态码+关闭原因三种方式
bool Connect():建立连接
Dispose():关闭连接,条件是状态码是Away
Uri GetUrl():获取URL
bool IsAlive():是否活动状态
bool Ping()、bool Ping(string message):发送ping、发送指定ping消息
boo Send():发送数据分为二进制、数据流、字符串以及数据流+长度四种参数
SetCookie(Cookie cookie):设置cookie
SetCredentials(string username, string password, bool preAuth):设置HTTP身份验证用户名、密码和认证
SetProxy(string url, string username, string password):设置HTTP代理
WebSocketSharp中WebSocket类的更多相关文章
- 如何在WebSocket类中访问Session
我最近正在做一个基于websocket的webQQ,最后代码会开源带github上,所以过程中我就不贴所有的代码啦~就贴问题的关键. 我在WebSocket里发消息的时候需要用到session,因为在 ...
- java中websocket的应用
在上一篇文章中,笔者简要介绍了websocket的应用场景及优点,戳这里 这篇文章主要来介绍一下在java项目中,特别是java web项目中websocket的应用. 场景:我做了一个商城系统,跟大 ...
- Spring Boot WebFlux-08——WebFlux 中 WebSocket 实现通信
第08课:WebFlux 中 WebSocket 实现通信 前言 WebFlux 该模块中包含了对反应式 HTTP.服务器推送事件和 WebSocket 的客户端和服务器端的支持.这里我们简单实践下 ...
- Python中的类、对象、继承
类 Python中,类的命名使用帕斯卡命名方式,即首字母大写. Python中定义类的方式如下: class 类名([父类名[,父类名[,...]]]): pass 省略父类名表示该类直接继承自obj ...
- 基础知识(05) -- Java中的类
Java中的类 1.类的概念 2.类中的封装 3.对象的三大特征 4.对象状态 5.类与类之间的关系 ------------------------------------------------- ...
- Objective-C中的类目,延展,协议
Objective-C中的类目(Category),延展(Extension),协议(Protocol)这些名词看起来挺牛的,瞬间感觉OC好高大上.在其他OOP语言中就没见过这些名词,刚看到这三个名词 ...
- CSS中伪类及伪元素用法详解
CSS中伪类及伪元素用法详解 伪类的分类及作用: 注:该表引自W3School教程 伪元素的分类及作用: 接下来让博主通过一些生动的实例(之前的作业或小作品)来说明几种常用伪类的用法和效果,其他的 ...
- Android中View类OnClickListener和DialogInterface类OnClickListener冲突解决办法
Android中View类OnClickListener和DialogInterface类OnClickListener冲突解决办法 如下面所示,同时导入这两个,会提示其中一个与另一个产生冲突. 1i ...
- C#中timer类的用法
C#中timer类的用法 关于C#中timer类 在C#里关于定时器类就有3个 1.定义在System.Windows.Forms里 2.定义在System.Threading.Timer类 ...
随机推荐
- spice在桌面虚拟化中的应用系列之一(spice简介,性能优化等)
1.spice介绍 1.1 spice简介 spice是由Qumranet开发的开源网络协议,2008年红帽收购了Qumranet获得了这个协议.SPICE是红帽在虚拟化领域除了KVM的又一“新兴技术 ...
- C++——static & const
静态成员 由关键字static修饰说明的类成员,称为静态类成员(static class member).虽然使用static修饰说明,但与函数中的静态变量有明显差异.类的静态成员为其所有对象共享,不 ...
- Python_字符串相关操作
1.字符串切片操作: str1='hello word' startIndex=0 #开始索引位置 endIndex=5 #结束索引位置+1 step=2 #步长 print(str1[startIn ...
- tomcat部署(一)
Tomcat部署最佳实践 标签: linux 笔者Q:972581034 交流群:605799367.有任何疑问可与笔者或加群交流 tomcat是玩web软件必会技能之一,今天我给大家介绍一下tomc ...
- iptables详解(6):iptables扩展模块之 state 扩展
为了防止恶意攻击主动连接到你的主机 我们需要通过iptables的扩展模块判断报文是为了回应我们之前发出的报文还是主动向我们发送的报文 state模块可以让iptables实现 连接追踪机制 NEW表 ...
- 《少年先疯队》第七次作业:团队项目设计完善&编码
博文简要信息表: 项目 内容 软件工程 https://www.cnblogs.com/nwnu-daizh/ 本次实验链接地址 https://www.cnblogs.com/nwnu-daizh/ ...
- 前端学习笔记--html入门
1.什么是html 2.标签和元素: 标签可嵌套,要注意缩进 html文档中的元素分为:内容文本.标签 3.标签和属性: 4.html的文件结构: 5.标签 a标签: 还不知道跳转到哪里,可以使用虚拟 ...
- 什么是EDID,EDID能做什么,EDID基本介绍
转至 http://blog.csdn.net/Jkf40622/article/details/48311455 Q1: 为什么要写这篇文章? A1:在最近的工作中遇到了不少问题,其中很多都是和ED ...
- shell 学习笔记 LinuxShell脚本攻略(第2版)
注释用#号:多条命令通过分号或回车来分隔 echo会自动换行,若不想换行,则加上-n参数,如 echo -n "nice to meet you" echo后面的内容可以不带引号, ...
- STM32 HAL库 UART 串口读写功能笔记
https://www.cnblogs.com/Mysterious/p/4804188.html STM32L0 HAL库 UART 串口读写功能 串口发送功能: uint8_t TxData[10 ...