Sfoglia il codice sorgente

Update MqttApplicationMessageBuilder.cs (#1230)

update function WithMessageExpiryInterval description
release/3.x.x
Jacky Jiang 3 anni fa
committed by GitHub
parent
commit
9d9077f17c
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  1. +3
    -3
      Source/MQTTnet/MqttApplicationMessageBuilder.cs

+ 3
- 3
Source/MQTTnet/MqttApplicationMessageBuilder.cs Vedi File

@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
@@ -198,7 +198,7 @@ namespace MQTTnet
_retain = value;
return this;
}
public MqttApplicationMessageBuilder WithDupFlag(bool value = true)
{
_dup = value;
@@ -306,7 +306,7 @@ namespace MQTTnet
}

/// <summary>
/// Adds the message expiry interval to the message.
/// Adds the message expiry interval in seconds to the message.
/// Hint: MQTT 5 feature only.
/// </summary>
/// <param name="messageExpiryInterval">The message expiry interval.</param>


Caricamento…
Annulla
Salva