Browse Source

Use IConnectionEndPointFeature to get IMqttChannelAdapter.Endpoint in aspnetcore31

release/3.x.x
陈国伟 4 years ago
parent
commit
c10145f743
1 changed files with 8 additions and 1 deletions
  1. +8
    -1
      Source/MQTTnet.AspnetCore/MqttConnectionContext.cs

+ 8
- 1
Source/MQTTnet.AspnetCore/MqttConnectionContext.cs View File

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


@@ -37,6 +37,13 @@ namespace MQTTnet.AspNetCore
{ {
get 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; var connection = Http?.HttpContext?.Connection;
if (connection == null) if (connection == null)
{ {


Loading…
Cancel
Save