소스 검색

Use IConnectionEndPointFeature to get IMqttChannelAdapter.Endpoint in aspnetcore31

release/3.x.x
陈国伟 4 년 전
부모
커밋
c10145f743
1개의 변경된 파일8개의 추가작업 그리고 1개의 파일을 삭제
  1. +8
    -1
      Source/MQTTnet.AspnetCore/MqttConnectionContext.cs

+ 8
- 1
Source/MQTTnet.AspnetCore/MqttConnectionContext.cs 파일 보기

@@ -25,7 +25,7 @@ namespace MQTTnet.AspNetCore
_input = Connection.Transport.Input;
_output = Connection.Transport.Output;
}
_reader = new SpanBasedMqttPacketBodyReader();
}

@@ -37,6 +37,13 @@ namespace MQTTnet.AspNetCore
{
get
{
#if NETCOREAPP3_1
var endpointFeature = Connection.Features.Get<Microsoft.AspNetCore.Connections.Features.IConnectionEndPointFeature>();
if (endpointFeature != null)
{
return endpointFeature.RemoteEndPoint.ToString();
}
#endif
var connection = Http?.HttpContext?.Connection;
if (connection == null)
{


불러오는 중...
취소
저장