123456789101112131415161718192021222324252627 |
- using Microsoft.AspNetCore.Connections;
- using Microsoft.AspNetCore.Http.Features;
- using System.Threading.Tasks;
- namespace FastGithub.HttpServer.TlsMiddlewares
- {
- /// <summary>
- /// https恢复中间件
- /// </summary>
- sealed class TlsRestoreMiddleware
- {
- /// <summary>
- /// 执行中间件
- /// </summary>
- /// <param name="context"></param>
- /// <returns></returns>
- public async Task InvokeAsync(ConnectionDelegate next, ConnectionContext context)
- {
- if (context.Features.Get<ITlsConnectionFeature>() == FakeTlsConnectionFeature.Instance)
- {
- // 擦除入侵
- context.Features.Set<ITlsConnectionFeature>(null);
- }
- await next(context);
- }
- }
- }
|