Browse Source

Add Wiki Code.

release/3.x.x
Christian Kratky 5 years ago
parent
commit
53ab2ac140
2 changed files with 43 additions and 2 deletions
  1. +21
    -1
      Tests/MQTTnet.TestApp.NetCore/Program.cs
  2. +22
    -1
      Tests/MQTTnet.TestApp.UniversalWindows/MainPage.xaml.cs

+ 21
- 1
Tests/MQTTnet.TestApp.NetCore/Program.cs View File

@@ -1,6 +1,8 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
using System.Net.Security;
using System.Security.Cryptography.X509Certificates;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using MQTTnet.Client; using MQTTnet.Client;
@@ -81,7 +83,7 @@ namespace MQTTnet.TestApp.NetCore
{ {
Task.Run(PerformanceTest.RunQoS0Test); Task.Run(PerformanceTest.RunQoS0Test);
} }
Thread.Sleep(Timeout.Infinite); Thread.Sleep(Timeout.Infinite);
} }
} }
@@ -118,4 +120,22 @@ namespace MQTTnet.TestApp.NetCore
return Task.FromResult(retainedMessages); return Task.FromResult(retainedMessages);
} }
} }

public class WikiCode
{
public void Code()
{
//Validate certificate.
var options = new MqttClientOptionsBuilder()
.WithTls(new MqttClientOptionsBuilderTlsParameters
{
CertificateValidationCallback = (X509Certificate x, X509Chain y, SslPolicyErrors z, IMqttClientOptions o) =>
{
// TODO: Check conditions of certificate by using above parameters.
return true;
}
})
.Build();
}
}
} }

+ 22
- 1
Tests/MQTTnet.TestApp.UniversalWindows/MainPage.xaml.cs View File

@@ -1,6 +1,8 @@
using System; using System;
using System.Collections.Concurrent; using System.Collections.Concurrent;
using System.Collections.ObjectModel; using System.Collections.ObjectModel;
using System.Net.Security;
using System.Security.Cryptography.X509Certificates;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using Windows.Security.Cryptography.Certificates; using Windows.Security.Cryptography.Certificates;
@@ -595,7 +597,7 @@ namespace MQTTnet.TestApp.UniversalWindows
}; };
} }
} }
// ---------------------------------- // ----------------------------------
{ {
var options = new MqttServerOptions(); var options = new MqttServerOptions();
@@ -714,6 +716,25 @@ namespace MQTTnet.TestApp.UniversalWindows
var mqttServer = new MqttFactory().CreateMqttServer(); var mqttServer = new MqttFactory().CreateMqttServer();
} }


{
// Setup subscription interceptor.
var options = new MqttServerOptionsBuilder()
.WithSubscriptionInterceptor(context =>
{
if (context.TopicFilter.Topic.StartsWith("admin/foo/bar") && context.ClientId != "theAdmin")
{
context.AcceptSubscription = false;
}

if (context.TopicFilter.Topic.StartsWith("the/secret/stuff") && context.ClientId != "Imperator")
{
context.AcceptSubscription = false;
context.CloseConnection = true;
}
})
.Build();
}

{ {
// Setup and start a managed MQTT client. // Setup and start a managed MQTT client.
var options = new ManagedMqttClientOptionsBuilder() var options = new ManagedMqttClientOptionsBuilder()


Loading…
Cancel
Save