瀏覽代碼

Add connack properties to authenticate result.

release/3.x.x
Christian Kratky 5 年之前
父節點
當前提交
913afa3977
共有 2 個文件被更改,包括 40 次插入2 次删除
  1. +2
    -0
      Build/MQTTnet.nuspec
  2. +38
    -2
      Source/MQTTnet/Client/Connecting/MqttClientAuthenticateResult.cs

+ 2
- 0
Build/MQTTnet.nuspec 查看文件

@@ -13,6 +13,8 @@
<releaseNotes>
* [Core] Fixed issues in MQTTv5 message encoding and decoding.
* [Client] Added support for extended authentication exchange.
* [Client] Exposed MQTTv5 CONNACK values to client.
* [Client] Added _MqttClientSubscribeOptionsBuilder_.
</releaseNotes>
<copyright>Copyright Christian Kratky 2016-2019</copyright>
<tags>MQTT Message Queue Telemetry Transport MQTTClient MQTTServer Server MQTTBroker Broker NETStandard IoT InternetOfThings Messaging Hardware Arduino Sensor Actuator M2M ESP Smart Home Cities Automation Xamarin</tags>


+ 38
- 2
Source/MQTTnet/Client/Connecting/MqttClientAuthenticateResult.cs 查看文件

@@ -1,9 +1,45 @@
namespace MQTTnet.Client.Connecting
using System.Collections.Generic;
using MQTTnet.Packets;

namespace MQTTnet.Client.Connecting
{
// TODO: Consider renaming this to _MqttClientConnectResult_
public class MqttClientAuthenticateResult
{
public MqttClientConnectResultCode ResultCode { get; set; }

public bool IsSessionPresent { get; set; }

public MqttClientConnectResultCode ResultCode { get; set; }
public bool? WildcardSubscriptionAvailable { get; set; }

public bool? RetainAvailable { get; set; }

public string AssignedClientIdentifier { get; set; }

public string AuthenticationMethod { get; set; }

public byte[] AuthenticationData { get; set; }

public uint? MaximumPacketSize { get; set; }

public string ReasonString { get; set; }

public ushort? ReceiveMaximum { get; set; }

public string ResponseInformation { get; set; }

public ushort? TopicAliasMaximum { get; set; }

public string ServerReference { get; set; }

public ushort? ServerKeepAlive { get; set; }

public uint? SessionExpiryInterval { get; set; }

public bool? SubscriptionIdentifiersAvailable { get; set; }

public bool? SharedSubscriptionAvailable { get; set; }

public List<MqttUserProperty> UserProperties { get; set; }
}
}

Loading…
取消
儲存