Browse Source

Fix broken ASP.NET Core integration.

release/3.x.x
Christian Kratky 7 years ago
parent
commit
44c07c2034
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      Frameworks/MQTTnet.AspnetCore/MqttHostedServer.cs

+ 2
- 2
Frameworks/MQTTnet.AspnetCore/MqttHostedServer.cs View File

@@ -11,9 +11,9 @@ namespace MQTTnet.AspNetCore
{ {
public class MqttHostedServer : MqttServer, IHostedService 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)); _options = options ?? throw new ArgumentNullException(nameof(options));
} }


Loading…
Cancel
Save