Class MqttClientUnsubscribeResult
public sealed class MqttClientUnsubscribeResult
- Inheritance
-
MqttClientUnsubscribeResult
- Inherited Members
Constructors
MqttClientUnsubscribeResult(ushort, IReadOnlyCollection<MqttClientUnsubscribeResultItem>, string, IReadOnlyCollection<MqttUserProperty>)
public MqttClientUnsubscribeResult(ushort packetIdentifier, IReadOnlyCollection<MqttClientUnsubscribeResultItem> items, string reasonString, IReadOnlyCollection<MqttUserProperty> userProperties)
Parameters
packetIdentifier
ushortitems
IReadOnlyCollection<MqttClientUnsubscribeResultItem>reasonString
stringuserProperties
IReadOnlyCollection<MqttUserProperty>
Properties
Items
Gets the result for every topic filter item.
public IReadOnlyCollection<MqttClientUnsubscribeResultItem> Items { get; }
Property Value
PacketIdentifier
Gets the packet identifier which was used.
public ushort PacketIdentifier { get; }
Property Value
ReasonString
Gets the reason string.
public string ReasonString { get; }
Property Value
UserProperties
Gets the user properties which were part of the UNSUBACK packet.
public IReadOnlyCollection<MqttUserProperty> UserProperties { get; set; }