Browse Source

Update client test app

release/3.x.x
Christian Kratky 6 years ago
parent
commit
e6de4d014e
1 changed files with 9 additions and 16 deletions
  1. +9
    -16
      Tests/MQTTnet.TestApp.NetCore/ClientTest.cs

+ 9
- 16
Tests/MQTTnet.TestApp.NetCore/ClientTest.cs View File

@@ -12,25 +12,18 @@ namespace MQTTnet.TestApp.NetCore
{ {
try try
{ {
var options = new MqttClientOptions
MqttNetConsoleLogger.ForwardToConsole();

var factory = new MqttFactory();
var client = factory.CreateMqttClient();
var clientOptions = new MqttClientOptions
{ {
ClientId = "XYZ",
CleanSession = true,
ChannelOptions = new MqttClientTcpOptions ChannelOptions = new MqttClientTcpOptions
{ {
//Server = "localhost",
Server = "192.168.1.174"
},
//ChannelOptions = new MqttClientWebSocketOptions
//{
// Uri = "ws://localhost:59690/mqtt"
//}
Server = "localhost"
}
}; };

var factory = new MqttFactory();
var client = factory.CreateMqttClient();

client.ApplicationMessageReceived += (s, e) => client.ApplicationMessageReceived += (s, e) =>
{ {
Console.WriteLine("### RECEIVED APPLICATION MESSAGE ###"); Console.WriteLine("### RECEIVED APPLICATION MESSAGE ###");
@@ -57,7 +50,7 @@ namespace MQTTnet.TestApp.NetCore


try try
{ {
await client.ConnectAsync(options);
await client.ConnectAsync(clientOptions);
} }
catch catch
{ {
@@ -67,7 +60,7 @@ namespace MQTTnet.TestApp.NetCore


try try
{ {
await client.ConnectAsync(options);
await client.ConnectAsync(clientOptions);
} }
catch (Exception exception) catch (Exception exception)
{ {


Loading…
Cancel
Save