ソースを参照

Update Wiki samples.

release/3.x.x
Christian Kratky 5年前
コミット
a2414f48ca
1個のファイルの変更16行の追加0行の削除
  1. +16
    -0
      Tests/MQTTnet.TestApp.UniversalWindows/MainPage.xaml.cs

+ 16
- 0
Tests/MQTTnet.TestApp.UniversalWindows/MainPage.xaml.cs ファイルの表示

@@ -733,6 +733,22 @@ namespace MQTTnet.TestApp.UniversalWindows
var mqttServer = new MqttFactory().CreateMqttServer();
}

{
// Setup application message interceptor.
var options = new MqttServerOptionsBuilder()
.WithApplicationMessageInterceptor(context =>
{
if (context.ApplicationMessage.Topic == "my/custom/topic")
{
context.ApplicationMessage.Payload = Encoding.UTF8.GetBytes("The server injected payload.");
}

// It is also possible to read the payload and extend it. For example by adding a timestamp in a JSON document.
// This is useful when the IoT device has no own clock and the creation time of the message might be important.
})
.Build();
}

{
// Setup subscription interceptor.
var options = new MqttServerOptionsBuilder()


読み込み中…
キャンセル
保存