Explorar el Código

Fix broken ASP.NET Core integration.

release/3.x.x
Christian Kratky hace 7 años
padre
commit
44c07c2034
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      Frameworks/MQTTnet.AspnetCore/MqttHostedServer.cs

+ 2
- 2
Frameworks/MQTTnet.AspnetCore/MqttHostedServer.cs Ver fichero

@@ -11,9 +11,9 @@ namespace MQTTnet.AspNetCore
{
public class MqttHostedServer : MqttServer, IHostedService
{
private readonly MqttServerOptions _options;
private readonly IMqttServerOptions _options;

public MqttHostedServer(MqttServerOptions options, IEnumerable<IMqttServerAdapter> adapters, IMqttNetLogger logger) : base(adapters, logger)
public MqttHostedServer(IMqttServerOptions options, IEnumerable<IMqttServerAdapter> adapters, IMqttNetLogger logger) : base(adapters, logger)
{
_options = options ?? throw new ArgumentNullException(nameof(options));
}


Cargando…
Cancelar
Guardar