You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
743 B
40 lines
743 B
2 years ago
|
using Microsoft.AspNetCore.Http;
|
||
|
|
||
|
namespace Znyc.CloudCar.Middlewares
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 中间件
|
||
|
/// SignalR发送数据
|
||
|
/// </summary>
|
||
|
public class SignalRSendMildd
|
||
|
{
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
private readonly RequestDelegate _next;
|
||
|
// private readonly IHubContext<ChatHub> _hubContext;
|
||
|
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
/// <param name="next"></param>
|
||
|
/// <param name="hubContext"></param>
|
||
|
public SignalRSendMildd(RequestDelegate next)
|
||
|
{
|
||
|
_next = next;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
public async Task InvokeAsync(HttpContext context)
|
||
|
{
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
await _next(context);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|