Asp.net core中的websocket

简介:




Websockethtml5后的产物,对于asp.net core中也得到了支持,首先在NuGet中添加Microsoft.AspNetCore.WebSockets的引用(现在是1.0.1版本,201737日发布的)。

首先在Configure中添加中间件

1
2
//添加websocket中间件
app.UseWebSockets();

接下来就要定义自己处理websocket的中间件了,代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
using  Microsoft.AspNetCore.Http;
using  System;
using  System.Net.WebSockets;
using  System.Threading;
using  System.Threading.Tasks;
  
namespace  Asp.NetCore_WebPage.Middleware
{
     /// <summary>
     /// websocket中间件,客户端发送的信息显示在控件台上,客户端会定时收到服务端推送的时间
     /// </summary>
     public  class  WebSocketNotifyMiddleware
     {
         /// <summary>
         /// 管道代理对象
         /// </summary>
         private  readonly  RequestDelegate _next;
         /// <summary>
         /// 
         /// </summary>
         /// <param name="next"></param>
         public  WebSocketNotifyMiddleware(RequestDelegate next)
         {
             _next = next;
         }
         /// <summary>
         /// 中间件调用
         /// </summary>
         /// <param name="context"></param>
         /// <returns></returns>
         public  Task Invoke(HttpContext context)
         {
             //判断是否为websocket请求
             if  (context.WebSockets.IsWebSocketRequest)
             {
                 //接收客户端
                 var  webSocket = context.WebSockets.AcceptWebSocketAsync().Result;
                 //启用一个线程处理接收客户端数据
                 new  Thread(Accept).Start(webSocket);
                 while  (webSocket.State == WebSocketState.Open)
                 {
                     webSocket.SendAsync( new  ArraySegment< byte >(System.Text.Encoding.UTF8.GetBytes($ "{DateTime.Now}" )), System.Net.WebSockets.WebSocketMessageType.Text,  true , CancellationToken.None);
                     Thread.Sleep(1000);
                 }
             }
             return  this ._next(context);
  
         }
         /// <summary>
         /// 接收客户端数据方法,这里可以根据自己的需求切换功能代码
         /// </summary>
         /// <param name="obj"></param>
         void  Accept( object  obj)
         {
             var  webSocket = obj  as  WebSocket;
             while  ( true )
             {
                 var  acceptArr =  new  byte [1024];
  
                 var  result = webSocket.ReceiveAsync( new  ArraySegment< byte >(acceptArr), CancellationToken.None).Result;
  
                 var  acceptStr = System.Text.Encoding.UTF8.GetString(acceptArr).Trim( char .MinValue);
                 Console.WriteLine( "收到信息:"  + acceptStr);
             }
  
         }
     }
}

添加中间件扩展

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using  Microsoft.AspNetCore.Builder;
using  Microsoft.AspNetCore.Http;
using  System;
using  System.Collections.Generic;
using  System.Linq;
using  System.Net.WebSockets;
using  System.Threading;
using  System.Threading.Tasks;
  
namespace  Asp.NetCore_WebPage.Middleware
{
     /// <summary>
     /// websocket通知中间件扩展
     /// </summary>
     public  static  class  WebSocketNotifyMiddlewareExtensions
     {
         /// <summary>
         /// 使用websocket通知
         /// </summary>
         /// <param name="builder"></param>
         /// <returns></returns>
         public  static  IApplicationBuilder UseWebSocketNotify(
           this  IApplicationBuilder builder)
         {
             return  builder.UseMiddleware<WebSocketNotifyMiddleware>();
         }
     }
}

这样,就可以在Startup.cs中的Configure中添加自己创建的中间件了,代码如下:

1
2
3
//添加websocket中间件
  app.UseWebSockets();
  app.UseWebSocketNotify();


到此服务端创建完成,接下来看客户端:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<div>
     当前在数据:<div id= "message" ></div>
     <div id= "output" ></div>
     <input class= "form-control"  type= "text"  id= "sendtxt"  value= "测试"  />
     <input type= "button"  onclick= "start()"  value= "开始"  />
     <input type= "button"  onclick= "send()"  value= "发送"  />
</div>
@section scripts{
<script>
var  socket;
      var  uri =  "ws://localhost:5000/ws" ;
//初始化连接
function  doConnect(open, accept, close, error) {
console.log( "doConnect" )
//创建websocket,并定义事件回调
     socket =  new  WebSocket(uri);
     socket.onopen =  function  (e) { open();};
     socket.onclose =  function  (e) { close(); };
     socket.onmessage =  function  (e) {
         accept(e.data);
     };
     socket.onerror =  function  (e) { error(e.data); };
}
//发送信息
function  doSend(message) {
     console.log( "doSend" )
     socket.send(message);
}
//关闭socket
function  doClose() {
     console.log( "doClose" )
     socket.close();
}        
//打开连接回调
         function  open() {
             console.log( "open" )
             document.getElementById( "message" ).innerText =  "连接打开" ;
         }
         //接收数据回调
         function  accept(result) {
             console.log( "accept" )
             document.getElementById( "output" ).innerText=result;
         }
         //关闭连接回调
         function  close() {
             console.log( "close" )
             document.getElementById( "message" ).innerText= "连接关闭" ;
         } //错误回调
         function  error(result) {
             console.log( "error" )
             alert( "错误:" +result);
         }
         //开始方法
         function  start() {
             console.log( "start" )
             doConnect(open, accept, close, error);         
         }
         function  send()
         {
             console.log( "send" )
             doSend(document.getElementById( "sendtxt" ).value); 
         }
     </script>
}


这里只是一个基本的例子,可以根据自己的业务来实现不同的功能。

















本文转自桂素伟51CTO博客,原文链接:http://blog.51cto.com/axzxs/1909795 ,如需转载请自行联系原作者



相关文章
|
25天前
|
开发框架 .NET 开发者
简化 ASP.NET Core 依赖注入(DI)注册-Scrutor
Scrutor 是一个简化 ASP.NET Core 应用程序中依赖注入(DI)注册过程的开源库,支持自动扫描和注册服务。通过简单的配置,开发者可以轻松地从指定程序集中筛选、注册服务,并设置其生命周期,同时支持服务装饰等高级功能。适用于大型项目,提高代码的可维护性和简洁性。仓库地址:&lt;https://github.com/khellang/Scrutor&gt;
40 5
|
2月前
|
开发框架 .NET C#
在 ASP.NET Core 中创建 gRPC 客户端和服务器
本文介绍了如何使用 gRPC 框架搭建一个简单的“Hello World”示例。首先创建了一个名为 GrpcDemo 的解决方案,其中包含一个 gRPC 服务端项目 GrpcServer 和一个客户端项目 GrpcClient。服务端通过定义 `greeter.proto` 文件中的服务和消息类型,实现了一个简单的问候服务 `GreeterService`。客户端则通过 gRPC 客户端库连接到服务端并调用其 `SayHello` 方法,展示了 gRPC 在 C# 中的基本使用方法。
46 5
在 ASP.NET Core 中创建 gRPC 客户端和服务器
|
1月前
|
开发框架 缓存 .NET
GraphQL 与 ASP.NET Core 集成:从入门到精通
本文详细介绍了如何在ASP.NET Core中集成GraphQL,包括安装必要的NuGet包、创建GraphQL Schema、配置GraphQL服务等步骤。同时,文章还探讨了常见问题及其解决方法,如处理复杂查询、错误处理、性能优化和实现认证授权等,旨在帮助开发者构建灵活且高效的API。
28 3
|
9天前
|
开发框架 算法 中间件
ASP.NET Core 中的速率限制中间件
在ASP.NET Core中,速率限制中间件用于控制客户端请求速率,防止服务器过载并提高安全性。通过`AddRateLimiter`注册服务,并配置不同策略如固定窗口、滑动窗口、令牌桶和并发限制。这些策略可在全局、控制器或动作级别应用,支持自定义响应处理。使用中间件`UseRateLimiter`启用限流功能,并可通过属性禁用特定控制器或动作的限流。这有助于有效保护API免受滥用和过载。 欢迎关注我的公众号:Net分享 (239字符)
25 0
|
4月前
|
开发框架 前端开发 JavaScript
ASP.NET MVC 教程
ASP.NET 是一个使用 HTML、CSS、JavaScript 和服务器脚本创建网页和网站的开发框架。
51 7
|
4月前
|
存储 开发框架 前端开发
ASP.NET MVC 迅速集成 SignalR
ASP.NET MVC 迅速集成 SignalR
86 0
|
5月前
|
开发框架 前端开发 .NET
ASP.NET MVC WebApi 接口返回 JOSN 日期格式化 date format
ASP.NET MVC WebApi 接口返回 JOSN 日期格式化 date format
66 0
|
5月前
|
开发框架 前端开发 安全
ASP.NET MVC 如何使用 Form Authentication?
ASP.NET MVC 如何使用 Form Authentication?
|
5月前
|
开发框架 .NET
Asp.Net Core 使用X.PagedList.Mvc.Core分页 & 搜索
Asp.Net Core 使用X.PagedList.Mvc.Core分页 & 搜索
159 0
|
8月前
|
开发框架 前端开发 .NET
ASP.NET CORE 3.1 MVC“指定的网络名不再可用\企图在不存在的网络连接上进行操作”的问题解决过程
ASP.NET CORE 3.1 MVC“指定的网络名不再可用\企图在不存在的网络连接上进行操作”的问题解决过程
218 0