杨前锦
2025-05-26 0e9cab9c1424692caa2003ecf6b951d57ffdb765
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>MQTTnet</name>
    </assembly>
    <members>
        <member name="P:MQTTnet.Client.MqttClientConnectedEventArgs.ConnectResult">
            <summary>
                Gets the authentication result.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientConnectResult.ResultCode">
            <summary>
            Gets the result code.
            MQTTv5 only.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientConnectResult.IsSessionPresent">
            <summary>
            Gets a value indicating whether a session was already available or not.
            MQTTv5 only.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientConnectResult.WildcardSubscriptionAvailable">
            <summary>
            Gets a value indicating whether wildcards can be used in subscriptions at the current server.
            MQTTv5 only.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientConnectResult.RetainAvailable">
            <summary>
            Gets whether the server supports retained messages.
            MQTTv5 only.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientConnectResult.AssignedClientIdentifier">
            <summary>
            Gets the client identifier which was chosen by the server.
            MQTTv5 only.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientConnectResult.AuthenticationMethod">
            <summary>
            Gets the authentication method.
            MQTTv5 only.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientConnectResult.AuthenticationData">
            <summary>
            Gets the authentication data.
            MQTTv5 only.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientConnectResult.ReasonString">
            <summary>
            Gets the reason string.
            MQTTv5 only.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientConnectResult.MaximumQoS">
            <summary>
            Gets the maximum QoS which is supported by the server.
            MQTTv5 only.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientConnectResult.ResponseInformation">
            <summary>
            Gets the response information.
            MQTTv5 only.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientConnectResult.TopicAliasMaximum">
            <summary>
            Gets the maximum value for a topic alias. 0 means not supported.
            MQTTv5 only.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientConnectResult.ServerReference">
            <summary>
            Gets an alternate server which should be used instead of the current one.
            MQTTv5 only.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientConnectResult.ServerKeepAlive">
            <summary>
            MQTTv5 only.
            Gets the keep alive interval which was chosen by the server instead of the
            keep alive interval from the client CONNECT packet.
            A value of 0 indicates that the feature is not used.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientConnectResult.SubscriptionIdentifiersAvailable">
            <summary>
            Gets a value indicating whether the subscription identifiers are available or not.
            MQTTv5 only.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientConnectResult.SharedSubscriptionAvailable">
            <summary>
            Gets a value indicating whether the shared subscriptions are available or not.
            MQTTv5 only.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientConnectResult.UserProperties">
            <summary>
            Gets the user properties.
            In MQTT 5, user properties are basic UTF-8 string key-value pairs that you can append to almost every type of MQTT packet.
            As long as you don’t exceed the maximum message size, you can use an unlimited number of user properties to add metadata to MQTT messages and pass information between publisher, broker, and subscriber.
            The feature is very similar to the HTTP header concept.
            MQTTv5 only.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientDisconnectedEventArgs.ConnectResult">
            <summary>
                Gets the authentication result.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientDisconnectedEventArgs.Reason">
            <summary>
                Gets or sets the reason.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientDisconnectOptions.Reason">
            <summary>
                Gets or sets the reason code.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientDisconnectOptions.ReasonString">
            <summary>
                Gets or sets the reason string.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientDisconnectOptions.SessionExpiryInterval">
            <summary>
                Gets or sets the session expiry interval.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientDisconnectOptions.UserProperties">
            <summary>
                Gets or sets the user properties.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="T:MQTTnet.Client.MqttClientDisconnectOptionsReason">
            <summary>
            This enum only contains values which are valid when a client sends the reason to the server.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttExtendedAuthenticationExchangeContext.ReasonCode">
            <summary>
            Gets the reason code.
            Hint: MQTT 5 feature only.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttExtendedAuthenticationExchangeContext.ReasonString">
            <summary>
            Gets the reason string.
            Hint: MQTT 5 feature only.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttExtendedAuthenticationExchangeContext.AuthenticationMethod">
            <summary>
            Gets the authentication method.
            Hint: MQTT 5 feature only.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttExtendedAuthenticationExchangeContext.AuthenticationData">
            <summary>
            Gets the authentication data.
            Hint: MQTT 5 feature only.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttExtendedAuthenticationExchangeContext.UserProperties">
            <summary>
            Gets the user properties.
            In MQTT 5, user properties are basic UTF-8 string key-value pairs that you can append to almost every type of MQTT packet.
            As long as you don’t exceed the maximum message size, you can use an unlimited number of user properties to add metadata to MQTT messages and pass information between publisher, broker, and subscriber.
            The feature is very similar to the HTTP header concept.
            Hint: MQTT 5 feature only.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttExtendedAuthenticationExchangeData.ReasonCode">
            <summary>
            Gets or sets the reason code.
            Hint: MQTT 5 feature only.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttExtendedAuthenticationExchangeData.ReasonString">
            <summary>
            Gets or sets the reason string.
            Hint: MQTT 5 feature only.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttExtendedAuthenticationExchangeData.AuthenticationData">
            <summary>
            Gets or sets the authentication data.
            Authentication data is binary information used to transmit multiple iterations of cryptographic secrets of protocol steps.
            The content of the authentication data is highly dependent on the specific implementation of the authentication method.
            Hint: MQTT 5 feature only.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttExtendedAuthenticationExchangeData.UserProperties">
            <summary>
            Gets or sets the user properties.
            In MQTT 5, user properties are basic UTF-8 string key-value pairs that you can append to almost every type of MQTT packet.
            As long as you don’t exceed the maximum message size, you can use an unlimited number of user properties to add metadata to MQTT messages and pass information between publisher, broker, and subscriber.
            The feature is very similar to the HTTP header concept.
            Hint: MQTT 5 feature only.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.AllowPacketFragmentation">
            <summary>
                Usually the MQTT packets can be send partially. This is done by using multiple TCP packets
                or WebSocket frames etc. Unfortunately not all brokers (like Amazon Web Services (AWS)) do support this feature and
                will close the connection when receiving such packets. If such a service is used this flag must
                be set to _false_.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.AuthenticationData">
            <summary>
                Gets or sets the authentication data.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.AuthenticationMethod">
            <summary>
                Gets or sets the authentication method.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.CleanSession">
            <summary>
                Gets or sets a value indicating whether clean sessions are used or not.
                When a client connects to a broker it can connect using either a non persistent connection (clean session) or a
                persistent connection.
                With a non persistent connection the broker doesn't store any subscription information or undelivered messages for
                the client.
                This mode is ideal when the client only publishes messages.
                It can also connect as a durable client using a persistent connection.
                In this mode, the broker will store subscription information, and undelivered messages for the client.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.ClientId">
            <summary>
                Gets the client identifier.
                Hint: This identifier needs to be unique over all used clients / devices on the broker to avoid connection issues.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.KeepAlivePeriod">
            <summary>
                Gets or sets the keep alive period.
                The connection is normally left open by the client so that is can send and receive data at any time.
                If no data flows over an open connection for a certain time period then the client will generate a PINGREQ and
                expect to receive a PINGRESP from the broker.
                This message exchange confirms that the connection is open and working.
                This period is known as the keep alive period.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.MaximumPacketSize">
            <summary>
                Gets or sets the maximum packet size.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.ReceiveMaximum">
            <summary>
                Gets or sets the receive maximum.
                This gives the maximum length of the receive messages.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.RequestProblemInformation">
            <summary>
                Gets or sets the request problem information.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.RequestResponseInformation">
            <summary>
                Gets or sets the request response information.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.SessionExpiryInterval">
            <summary>
                Gets or sets the session expiry interval.
                The time after a session expires when it's not actively used.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.ThrowOnNonSuccessfulConnectResponse">
            <summary>
                Gets or sets whether an exception should be thrown when the server has sent a non success ACK packet.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.Timeout">
            <summary>
                Gets or sets the timeout which will be applied at socket level and internal operations.
                The default value is the same as for sockets in .NET in general.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.TopicAliasMaximum">
            <summary>
                Gets or sets the topic alias maximum.
                This gives the maximum length of the topic alias.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.TryPrivate">
            <summary>
                If set to true, the bridge will attempt to indicate to the remote broker that it is a bridge not an ordinary
                client.
                If successful, this means that loop detection will be more effective and that retained messages will be propagated
                correctly.
                <remarks>
                    Not all brokers support this feature so it may be necessary to set it to false if your bridge does not
                    connect properly.
                </remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.UserProperties">
            <summary>
                Gets or sets the user properties.
                In MQTT 5, user properties are basic UTF-8 string key-value pairs that you can append to almost every type of MQTT
                packet.
                As long as you don’t exceed the maximum message size, you can use an unlimited number of user properties to add
                metadata to MQTT messages and pass information between publisher, broker, and subscriber.
                The feature is very similar to the HTTP header concept.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.ValidateFeatures">
            <summary>
                When this feature is enabled the client will check if used properties are supported in the selected protocol
                version.
                This feature can be validated if an application message is generated one time but sent via different protocol
                versions.
                Default values are applied if the validation is off and features are not supported.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.WillContentType">
            <summary>
                Gets or sets the content type of the will message.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.WillCorrelationData">
            <summary>
                Gets or sets the correlation data of the will message.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.WillDelayInterval">
            <summary>
                Gets or sets the will delay interval.
                This is the time between the client disconnect and the time the will message will be sent.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.WillMessageExpiryInterval">
            <summary>
                Gets or sets the message expiry interval of the will message.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.WillPayload">
            <summary>
                Gets or sets the payload of the will message.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.WillPayloadFormatIndicator">
            <summary>
                Gets or sets the payload format indicator of the will message.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.WillQualityOfServiceLevel">
            <summary>
                Gets or sets the QoS level of the will message.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.WillResponseTopic">
            <summary>
                Gets or sets the response topic of the will message.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.WillRetain">
            <summary>
                Gets or sets the retain flag of the will message.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.WillTopic">
            <summary>
                Gets or sets the topic of the will message.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.WillUserProperties">
            <summary>
                Gets or sets the user properties of the will message.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.WriterBufferSize">
            <summary>
                Gets or sets the default and initial size of the packet write buffer.
                It is recommended to set this to a value close to the usual expected packet size * 1.5.
                Do not change this value when no memory issues are experienced.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientOptions.WriterBufferSizeMax">
            <summary>
                Gets or sets the maximum size of the buffer writer. The writer will reduce its internal buffer
                to this value after serializing a packet.
                Do not change this value when no memory issues are experienced.
            </summary>
        </member>
        <member name="M:MQTTnet.Client.MqttClientOptionsBuilder.WithoutThrowOnNonSuccessfulConnectResponse">
            <summary>
            The client will not throw an exception when the MQTT server responses with a non success ACK packet.
            This will become the default behavior in future versions of the library.
            </summary>
        </member>
        <member name="M:MQTTnet.Client.MqttClientOptionsBuilder.WithCleanSession(System.Boolean)">
            <summary>
                Clean session is used in MQTT versions below 5.0.0. It is the same as setting "CleanStart".
            </summary>
        </member>
        <member name="M:MQTTnet.Client.MqttClientOptionsBuilder.WithCleanStart(System.Boolean)">
            <summary>
                Clean start is used in MQTT versions 5.0.0 and higher. It is the same as setting "CleanSession".
            </summary>
        </member>
        <member name="M:MQTTnet.Client.MqttClientOptionsBuilder.WithoutPacketFragmentation">
            <summary>
                Usually the MQTT packets can be send partially. This is done by using multiple TCP packets
                or WebSocket frames etc. Unfortunately not all brokers (like Amazon Web Services (AWS)) do support this feature and
                will close the connection when receiving such packets. If such a service is used this flag must
                be set to _true_.
            </summary>
        </member>
        <member name="M:MQTTnet.Client.MqttClientOptionsBuilder.WithTimeout(System.TimeSpan)">
            <summary>
                Sets the timeout which will be applied at socket level and internal operations.
                The default value is the same as for sockets in .NET in general.
            </summary>
        </member>
        <member name="M:MQTTnet.Client.MqttClientOptionsBuilder.WithTryPrivate(System.Boolean)">
            <summary>
                If set to true, the bridge will attempt to indicate to the remote broker that it is a bridge not an ordinary
                client.
                If successful, this means that loop detection will be more effective and that retained messages will be propagated
                correctly.
                Not all brokers support this feature so it may be necessary to set it to false if your bridge does not connect
                properly.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientTcpOptions.LocalEndpoint">
            <summary>
            Gets the local endpoint (network card) which is used by the client.
            Set it to _null_ to let the OS select the network card.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientTcpOptions.DualMode">
            <summary>
            Gets or sets whether the underlying socket should run in dual mode.
            Leaving this _null_ will avoid setting this value at socket level.
            Setting this a value other than _null_ will throw an exception when only IPv4 is supported on the machine.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientTlsOptions.TargetHost">
            <summary>
                Gets or sets the target host.
                If the value is null or empty the same host as the TCP socket host will be used.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientWebSocketOptions.KeepAliveInterval">
            <summary>
                Gets or sets the keep alive interval for the Web Socket connection.
                This is not related to the keep alive interval for the MQTT protocol.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientWebSocketOptions.UseDefaultCredentials">
            <summary>
                Gets or sets whether the default (system) credentials should be used when connecting via Web Socket connection.
                This is not related to the credentials which are used for the MQTT protocol.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientPublishResult.IsSuccess">
            <summary>
                Returns if the overall status of the publish is a success. This can be the reason code _Success_ or
                _NoMatchingSubscribers_. _NoMatchingSubscribers_ usually indicates only that no other client is interested in the
                topic but overall transmit
                to the server etc. was a success.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientPublishResult.PacketIdentifier">
            <summary>
                Gets the packet identifier which was used for this publish.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientPublishResult.ReasonCode">
            <summary>
                Gets or sets the reason code.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientPublishResult.ReasonString">
            <summary>
                Gets or sets the reason string.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientPublishResult.UserProperties">
            <summary>
                Gets or sets the user properties.
                In MQTT 5, user properties are basic UTF-8 string key-value pairs that you can append to almost every type of MQTT
                packet.
                As long as you don’t exceed the maximum message size, you can use an unlimited number of user properties to add
                metadata to MQTT messages and pass information between publisher, broker, and subscriber.
                The feature is very similar to the HTTP header concept.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttApplicationMessageReceivedEventArgs.AutoAcknowledge">
            <summary>
                Gets or sets whether the library should send MQTT ACK packets automatically if required.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttApplicationMessageReceivedEventArgs.ClientId">
            <summary>
                Gets the client identifier.
                Hint: This identifier needs to be unique over all used clients / devices on the broker to avoid connection issues.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttApplicationMessageReceivedEventArgs.IsHandled">
            <summary>
                Gets or sets whether this message was handled.
                This value can be used in user code for custom control flow.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttApplicationMessageReceivedEventArgs.PacketIdentifier">
            <summary>
                Gets the identifier of the MQTT packet
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttApplicationMessageReceivedEventArgs.ProcessingFailed">
            <summary>
                Indicates if the processing of this PUBLISH packet has failed.
                If the processing has failed the client will not send an ACK packet etc.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttApplicationMessageReceivedEventArgs.ReasonCode">
            <summary>
                Gets or sets the reason code which will be sent to the server.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttApplicationMessageReceivedEventArgs.ResponseReasonString">
            <summary>
                Gets or sets the reason string which will be sent to the server in the ACK packet.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttApplicationMessageReceivedEventArgs.ResponseUserProperties">
            <summary>
                Gets or sets the user properties which will be sent to the server in the ACK packet etc.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientSubscribeOptions.SubscriptionIdentifier">
            <summary>
                Gets or sets the subscription identifier.
                The client can specify a subscription identifier when subscribing.
                The broker will establish and store the mapping relationship between this subscription and subscription identifier
                when successfully create or modify subscription.
                The broker will return the subscription identifier associated with this PUBLISH packet and the PUBLISH packet to
                the client when need to forward PUBLISH packets matching this subscription to this client.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientSubscribeOptions.TopicFilters">
            <summary>
                Gets or sets a list of topic filters the client wants to subscribe to.
                Topic filters can include regular topics or wild cards.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientSubscribeOptions.UserProperties">
            <summary>
                Gets or sets the user properties.
                In MQTT 5, user properties are basic UTF-8 string key-value pairs that you can append to almost every type of MQTT
                packet.
                As long as you don’t exceed the maximum message size, you can use an unlimited number of user properties to add
                metadata to MQTT messages and pass information between publisher, broker, and subscriber.
                The feature is very similar to the HTTP header concept.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="M:MQTTnet.Client.MqttClientSubscribeOptionsBuilder.WithUserProperty(System.String,System.String)">
            <summary>
                Adds the user property to the subscribe options.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientSubscribeResult.Items">
            <summary>
            Gets the result for every topic filter item.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientSubscribeResult.UserProperties">
            <summary>
            Gets the user properties which were part of the SUBACK packet.
            <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientSubscribeResult.ReasonString">
            <summary>
            Gets the reason string.
            <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientSubscribeResult.PacketIdentifier">
            <summary>
            Gets the packet identifier which was used.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientSubscribeResultItem.TopicFilter">
            <summary>
            Gets or sets the topic filter.
            The topic filter can contain topics and wildcards.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientSubscribeResultItem.ResultCode">
            <summary>
            Gets or sets the result code.
            <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientUnsubscribeOptions.TopicFilters">
            <summary>
                Gets or sets a list of topic filters the client wants to unsubscribe from.
                Topic filters can include regular topics or wild cards.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientUnsubscribeOptions.UserProperties">
            <summary>
                Gets or sets the user properties.
                In MQTT 5, user properties are basic UTF-8 string key-value pairs that you can append to almost every type of MQTT
                packet.
                As long as you don’t exceed the maximum message size, you can use an unlimited number of user properties to add
                metadata to MQTT messages and pass information between publisher, broker, and subscriber.
                The feature is very similar to the HTTP header concept.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="M:MQTTnet.Client.MqttClientUnsubscribeOptionsBuilder.WithUserProperty(System.String,System.String)">
            <summary>
                Adds the user property to the unsubscribe options.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="M:MQTTnet.Client.MqttClientUnsubscribeOptionsBuilder.WithUserProperty(MQTTnet.Packets.MqttUserProperty)">
            <summary>
                Adds the user property to the unsubscribe options.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientUnsubscribeResult.Items">
            <summary>
                Gets the result for every topic filter item.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientUnsubscribeResult.PacketIdentifier">
            <summary>
                Gets the packet identifier which was used.
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientUnsubscribeResult.ReasonString">
            <summary>
                Gets the reason string.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientUnsubscribeResult.UserProperties">
            <summary>
                Gets the user properties which were part of the UNSUBACK packet.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientUnsubscribeResultItem.ResultCode">
            <summary>
                Gets or sets the result code.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Client.MqttClientUnsubscribeResultItem.TopicFilter">
            <summary>
                Gets or sets the topic filter.
                The topic filter can contain topics and wildcards.
            </summary>
        </member>
        <member name="T:MQTTnet.Diagnostics.MqttNetEventLogger">
            <summary>
                This logger fires an event when a new message was published.
            </summary>
        </member>
        <member name="T:MQTTnet.Diagnostics.MqttNetNullLogger">
            <summary>
                This logger does nothing with the messages.
            </summary>
        </member>
        <member name="T:MQTTnet.Formatter.MqttBufferWriter">
            <summary>
                This is a custom implementation of a memory stream which provides only MQTTnet relevant features.
                The goal is to avoid lots of argument checks like in the original stream. The growth rule is the
                same as for the original MemoryStream in .net. Also this implementation allows accessing the internal
                buffer for all platforms and .net framework versions (which is not available at the regular MemoryStream).
            </summary>
        </member>
        <member name="P:MQTTnet.MqttApplicationMessage.ContentType">
            <summary>
                Gets or sets the content type.
                The content type must be a UTF-8 encoded string. The content type value identifies the kind of UTF-8 encoded
                payload.
            </summary>
        </member>
        <member name="P:MQTTnet.MqttApplicationMessage.CorrelationData">
            <summary>
                Gets or sets the correlation data.
                In order for the sender to know what sent message the response refers to it can also send correlation data with the
                published message.
                Hint: MQTT 5 feature only.
            </summary>
        </member>
        <member name="P:MQTTnet.MqttApplicationMessage.Dup">
            <summary>
                If the DUP flag is set to 0, it indicates that this is the first occasion that the Client or Server has attempted
                to send this MQTT PUBLISH Packet.
                If the DUP flag is set to 1, it indicates that this might be re-delivery of an earlier attempt to send the Packet.
                The DUP flag MUST be set to 1 by the Client or Server when it attempts to re-deliver a PUBLISH Packet
                [MQTT-3.3.1.-1].
                The DUP flag MUST be set to 0 for all QoS 0 messages [MQTT-3.3.1-2].
            </summary>
        </member>
        <member name="P:MQTTnet.MqttApplicationMessage.MessageExpiryInterval">
            <summary>
                Gets or sets the message expiry interval.
                A client can set the message expiry interval in seconds for each PUBLISH message individually.
                This interval defines the period of time that the broker stores the PUBLISH message for any matching subscribers
                that are not currently connected.
                When no message expiry interval is set, the broker must store the message for matching subscribers indefinitely.
                When the retained=true option is set on the PUBLISH message, this interval also defines how long a message is
                retained on a topic.
                Hint: MQTT 5 feature only.
            </summary>
        </member>
        <member name="P:MQTTnet.MqttApplicationMessage.Payload">
            <summary>
            Gets or sets the payload.
            The payload is the data bytes sent via the MQTT protocol.
            </summary>
        </member>
        <member name="P:MQTTnet.MqttApplicationMessage.PayloadSegment">
            <summary>
            Get or set ArraySegment style of Payload.
            </summary>
        </member>
        <member name="P:MQTTnet.MqttApplicationMessage.PayloadFormatIndicator">
            <summary>
                Gets or sets the payload format indicator.
                The payload format indicator is part of any MQTT packet that can contain a payload. The indicator is an optional
                byte value.
                A value of 0 indicates an “unspecified byte stream”.
                A value of 1 indicates a "UTF-8 encoded payload".
                If no payload format indicator is provided, the default value is 0.
                Hint: MQTT 5 feature only.
            </summary>
        </member>
        <member name="P:MQTTnet.MqttApplicationMessage.QualityOfServiceLevel">
            <summary>
                Gets or sets the quality of service level.
                The Quality of Service (QoS) level is an agreement between the sender of a message and the receiver of a message
                that defines the guarantee of delivery for a specific message.
                There are 3 QoS levels in MQTT:
                - At most once  (0): Message gets delivered no time, once or multiple times.
                - At least once (1): Message gets delivered at least once (one time or more often).
                - Exactly once  (2): Message gets delivered exactly once (It's ensured that the message only comes once).
            </summary>
        </member>
        <member name="P:MQTTnet.MqttApplicationMessage.ResponseTopic">
            <summary>
                Gets or sets the response topic.
                In MQTT 5 the ability to publish a response topic was added in the publish message which allows you to implement
                the request/response pattern between clients that is common in web applications.
                Hint: MQTT 5 feature only.
            </summary>
        </member>
        <member name="P:MQTTnet.MqttApplicationMessage.Retain">
            <summary>
                Gets or sets a value indicating whether the message should be retained or not.
                A retained message is a normal MQTT message with the retained flag set to true.
                The broker stores the last retained message and the corresponding QoS for that topic.
            </summary>
        </member>
        <member name="P:MQTTnet.MqttApplicationMessage.SubscriptionIdentifiers">
            <summary>
                Gets or sets the subscription identifiers.
                The client can specify a subscription identifier when subscribing.
                The broker will establish and store the mapping relationship between this subscription and subscription identifier
                when successfully create or modify subscription.
                The broker will return the subscription identifier associated with this PUBLISH packet and the PUBLISH packet to
                the client when need to forward PUBLISH packets matching this subscription to this client.
                Hint: MQTT 5 feature only.
            </summary>
        </member>
        <member name="P:MQTTnet.MqttApplicationMessage.Topic">
            <summary>
                Gets or sets the MQTT topic.
                In MQTT, the word topic refers to an UTF-8 string that the broker uses to filter messages for each connected
                client.
                The topic consists of one or more topic levels. Each topic level is separated by a forward slash (topic level
                separator).
            </summary>
        </member>
        <member name="P:MQTTnet.MqttApplicationMessage.TopicAlias">
            <summary>
                Gets or sets the topic alias.
                Topic aliases were introduced are a mechanism for reducing the size of published packets by reducing the size of
                the topic field.
                A value of 0 indicates no topic alias is used.
                Hint: MQTT 5 feature only.
            </summary>
        </member>
        <member name="P:MQTTnet.MqttApplicationMessage.UserProperties">
            <summary>
                Gets or sets the user properties.
                In MQTT 5, user properties are basic UTF-8 string key-value pairs that you can append to almost every type of MQTT
                packet.
                As long as you don’t exceed the maximum message size, you can use an unlimited number of user properties to add
                metadata to MQTT messages and pass information between publisher, broker, and subscriber.
                The feature is very similar to the HTTP header concept.
                Hint: MQTT 5 feature only.
            </summary>
        </member>
        <member name="M:MQTTnet.MqttApplicationMessageBuilder.WithContentType(System.String)">
            <summary>
                Adds the content type to the message.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="M:MQTTnet.MqttApplicationMessageBuilder.WithCorrelationData(System.Byte[])">
            <summary>
                Adds the correlation data to the message.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="M:MQTTnet.MqttApplicationMessageBuilder.WithMessageExpiryInterval(System.UInt32)">
            <summary>
                Adds the message expiry interval in seconds to the message.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="M:MQTTnet.MqttApplicationMessageBuilder.WithPayloadFormatIndicator(MQTTnet.Protocol.MqttPayloadFormatIndicator)">
            <summary>
                Adds the payload format indicator to the message.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="M:MQTTnet.MqttApplicationMessageBuilder.WithQualityOfServiceLevel(MQTTnet.Protocol.MqttQualityOfServiceLevel)">
            <summary>
                The quality of service level.
                The Quality of Service (QoS) level is an agreement between the sender of a message and the receiver of a message
                that defines the guarantee of delivery for a specific message.
                There are 3 QoS levels in MQTT:
                - At most once  (0): Message gets delivered no time, once or multiple times.
                - At least once (1): Message gets delivered at least once (one time or more often).
                - Exactly once  (2): Message gets delivered exactly once (It's ensured that the message only comes once).
            </summary>
        </member>
        <member name="M:MQTTnet.MqttApplicationMessageBuilder.WithResponseTopic(System.String)">
            <summary>
                Adds the response topic to the message.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="M:MQTTnet.MqttApplicationMessageBuilder.WithRetainFlag(System.Boolean)">
            <summary>
                A value indicating whether the message should be retained or not.
                A retained message is a normal MQTT message with the retained flag set to true.
                The broker stores the last retained message and the corresponding QoS for that topic.
            </summary>
        </member>
        <member name="M:MQTTnet.MqttApplicationMessageBuilder.WithSubscriptionIdentifier(System.UInt32)">
            <summary>
                Adds the subscription identifier to the message.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="M:MQTTnet.MqttApplicationMessageBuilder.WithTopic(System.String)">
            <summary>
                The MQTT topic.
                In MQTT, the word topic refers to an UTF-8 string that the broker uses to filter messages for each connected
                client.
                The topic consists of one or more topic levels. Each topic level is separated by a forward slash (topic level
                separator).
            </summary>
        </member>
        <member name="M:MQTTnet.MqttApplicationMessageBuilder.WithTopicAlias(System.UInt16)">
            <summary>
                Adds the topic alias to the message.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="M:MQTTnet.MqttApplicationMessageBuilder.WithUserProperty(System.String,System.String)">
            <summary>
                Adds the user property to the message.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="F:MQTTnet.MqttTopicFilterBuilder._qualityOfServiceLevel">
            <summary>
            The quality of service level.
            The Quality of Service (QoS) level is an agreement between the sender of a message and the receiver of a message that defines the guarantee of delivery for a specific message.
            There are 3 QoS levels in MQTT:
            - At most once  (0): Message gets delivered no time, once or multiple times.
            - At least once (1): Message gets delivered at least once (one time or more often).
            - Exactly once  (2): Message gets delivered exactly once (It's ensured that the message only comes once).
            </summary>
        </member>
        <member name="F:MQTTnet.MqttTopicFilterBuilder._topic">
            <summary>
            The MQTT topic.
            In MQTT, the word topic refers to an UTF-8 string that the broker uses to filter messages for each connected client.
            The topic consists of one or more topic levels. Each topic level is separated by a forward slash (topic level separator).
            </summary>
        </member>
        <member name="T:MQTTnet.Packets.MqttAuthPacket">
            <summary>Added in MQTTv5.0.0.</summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttConnAckPacket.AssignedClientIdentifier">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttConnAckPacket.IsSessionPresent">
            <summary>
                Added in MQTTv3.1.1.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttConnAckPacket.ReasonCode">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttConnectPacket.CleanSession">
            <summary>
                Also called "Clean Start" in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttDisconnectPacket.ReasonCode">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttDisconnectPacket.ReasonString">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttDisconnectPacket.ServerReference">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttDisconnectPacket.SessionExpiryInterval">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttDisconnectPacket.UserProperties">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttPubAckPacket.ReasonCode">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttPubAckPacket.ReasonString">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttPubAckPacket.UserProperties">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttPubCompPacket.ReasonCode">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttPubCompPacket.ReasonString">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttPubCompPacket.UserProperties">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttPubRecPacket.ReasonCode">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttPubRecPacket.ReasonString">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttPubRecPacket.UserProperties">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttPubRelPacket.ReasonCode">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttPubRelPacket.ReasonString">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttPubRelPacket.UserProperties">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttSubAckPacket.ReasonCodes">
            <summary>
                Reason Code is used in MQTTv5.0.0 and backward compatible to v.3.1.1. Return Code is used in MQTTv3.1.1
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttSubAckPacket.ReasonString">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttSubAckPacket.UserProperties">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttSubscribePacket.SubscriptionIdentifier">
            <summary>
                It is a Protocol Error if the Subscription Identifier has a value of 0.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttSubscribePacket.UserProperties">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttTopicFilter.NoLocal">
            <summary>
                Gets or sets a value indicating whether the sender will not receive its own published application messages.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttTopicFilter.QualityOfServiceLevel">
            <summary>
                Gets or sets the quality of service level.
                The Quality of Service (QoS) level is an agreement between the sender of a message and the receiver of a message
                that defines the guarantee of delivery for a specific message.
                There are 3 QoS levels in MQTT:
                - At most once  (0): Message gets delivered no time, once or multiple times.
                - At least once (1): Message gets delivered at least once (one time or more often).
                - Exactly once  (2): Message gets delivered exactly once (It's ensured that the message only comes once).
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttTopicFilter.RetainAsPublished">
            <summary>
                Gets or sets a value indicating whether messages are retained as published or not.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttTopicFilter.RetainHandling">
            <summary>
                Gets or sets the retain handling.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttTopicFilter.Topic">
            <summary>
                Gets or sets the MQTT topic.
                In MQTT, the word topic refers to an UTF-8 string that the broker uses to filter messages for each connected
                client.
                The topic consists of one or more topic levels. Each topic level is separated by a forward slash (topic level
                separator).
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttUnsubAckPacket.ReasonCodes">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttUnsubAckPacket.ReasonString">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttUnsubAckPacket.UserProperties">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="P:MQTTnet.Packets.MqttUnsubscribePacket.UserProperties">
            <summary>
                Added in MQTTv5.
            </summary>
        </member>
        <member name="F:MQTTnet.Protocol.MqttPubAckReasonCode.NoMatchingSubscribers">
            <summary>
            The message is accepted but there are no subscribers. This is sent only by the Server. If the Server knows that there are no matching subscribers, it MAY use this Reason Code instead of 0x00 (Success).
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ApplicationMessageNotConsumedEventArgs.ApplicationMessage">
            <summary>
                Gets the application message which was not consumed by any client.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ApplicationMessageNotConsumedEventArgs.SenderId">
            <summary>
                Gets the ID of the client which has sent the affected application message.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ClientAcknowledgedPublishPacketEventArgs.AcknowledgePacket">
            <summary>
                Gets the packet which was used for acknowledge. This can be a PubAck or PubComp packet.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ClientAcknowledgedPublishPacketEventArgs.ClientId">
            <summary>
                Gets the ID of the client which acknowledged a PUBLISH packet.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ClientAcknowledgedPublishPacketEventArgs.IsCompleted">
            <summary>
                Gets whether the PUBLISH packet is fully acknowledged. This is the case for PUBACK (QoS 1) and PUBCOMP (QoS 2.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ClientAcknowledgedPublishPacketEventArgs.PublishPacket">
            <summary>
                Gets the PUBLISH packet which was acknowledged.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ClientAcknowledgedPublishPacketEventArgs.SessionItems">
            <summary>
                Gets the session items which contain custom user data per session.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ClientConnectedEventArgs.ClientId">
            <summary>
                Gets the client identifier of the connected client.
                Hint: This identifier needs to be unique over all used clients / devices on the broker to avoid connection issues.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ClientConnectedEventArgs.Endpoint">
            <summary>
                Gets the endpoint of the connected client.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ClientConnectedEventArgs.ProtocolVersion">
            <summary>
                Gets the protocol version which is used by the connected client.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ClientConnectedEventArgs.SessionItems">
            <summary>
                Gets or sets a key/value collection that can be used to share data within the scope of this session.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ClientConnectedEventArgs.UserName">
            <summary>
                Gets the user name of the connected client.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ClientConnectedEventArgs.UserProperties">
            <summary>
                Gets the user properties sent by the client.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ClientDisconnectedEventArgs.ClientId">
            <summary>
                Gets the client identifier.
                Hint: This identifier needs to be unique over all used clients / devices on the broker to avoid connection issues.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ClientDisconnectedEventArgs.ReasonCode">
            <summary>
                Gets the reason code sent by the client.
                Only available for clean disconnects.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ClientDisconnectedEventArgs.ReasonString">
            <summary>
                Gets the reason string sent by the client.
                Only available for clean disconnects.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ClientDisconnectedEventArgs.SessionExpiryInterval">
            <summary>
                Gets the session expiry interval sent by the client.
                Only available for clean disconnects.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ClientDisconnectedEventArgs.SessionItems">
            <summary>
                Gets or sets a key/value collection that can be used to share data within the scope of this session.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ClientDisconnectedEventArgs.UserProperties">
            <summary>
                Gets the user properties sent by the client.
                Only available for clean disconnects.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ClientSubscribedTopicEventArgs.ClientId">
            <summary>
                Gets the client identifier.
                Hint: This identifier needs to be unique over all used clients / devices on the broker to avoid connection issues.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ClientSubscribedTopicEventArgs.SessionItems">
            <summary>
                Gets or sets a key/value collection that can be used to share data within the scope of this session.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ClientSubscribedTopicEventArgs.TopicFilter">
            <summary>
                Gets the topic filter.
                The topic filter can contain topics and wildcards.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ClientUnsubscribedTopicEventArgs.ClientId">
            <summary>
                Gets the client identifier.
                Hint: This identifier needs to be unique over all used clients / devices on the broker to avoid connection issues.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ClientUnsubscribedTopicEventArgs.SessionItems">
            <summary>
                Gets or sets a key/value collection that can be used to share data within the scope of this session.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ClientUnsubscribedTopicEventArgs.TopicFilter">
            <summary>
                Gets or sets the topic filter.
                The topic filter can contain topics and wildcards.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingClientApplicationMessageEnqueueEventArgs.AcceptEnqueue">
            <summary>
                Gets or sets whether the enqueue of the application message should be performed or not.
                If set to _False_ the client will not receive the application message.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingClientApplicationMessageEnqueueEventArgs.CloseSenderConnection">
            <summary>
                Indicates if the connection with the sender should be closed.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingPacketEventArgs.CancellationToken">
            <summary>
                Gets the cancellation token from the connection managing thread.
                Use this in further event processing.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingPacketEventArgs.ClientId">
            <summary>
                Gets the client ID which has sent the packet or will receive the packet.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingPacketEventArgs.Endpoint">
            <summary>
                Gets the endpoint of the sending or receiving client.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingPacketEventArgs.Packet">
            <summary>
                Gets or sets the MQTT packet which was received or will be sent.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingPacketEventArgs.ProcessPacket">
            <summary>
                Gets or sets whether the packet should be processed or not.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingPacketEventArgs.SessionItems">
            <summary>
                Gets or sets a key/value collection that can be used to share data within the scope of this session.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingPublishEventArgs.CancellationToken">
            <summary>
                Gets the cancellation token which can indicate that the client connection gets down.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingPublishEventArgs.ClientId">
            <summary>
                Gets the client identifier.
                Hint: This identifier needs to be unique over all used clients / devices on the broker to avoid connection issues.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingPublishEventArgs.ProcessPublish">
            <summary>
                Gets or sets whether the publish should be processed internally.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingPublishEventArgs.Response">
            <summary>
                Gets the response which will be sent to the client via the PUBACK etc. packets.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingPublishEventArgs.SessionItems">
            <summary>
                Gets or sets a key/value collection that can be used to share data within the scope of this session.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingSubscriptionEventArgs.CancellationToken">
            <summary>
                Gets the cancellation token which can indicate that the client connection gets down.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingSubscriptionEventArgs.ClientId">
            <summary>
                Gets the client identifier.
                Hint: This identifier needs to be unique over all used clients / devices on the broker to avoid connection issues.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingSubscriptionEventArgs.CloseConnection">
            <summary>
                Gets or sets whether the broker should close the client connection.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingSubscriptionEventArgs.ProcessSubscription">
            <summary>
                Gets or sets whether the broker should create an internal subscription for the client.
                The broker can also avoid this and return "success" to the client.
                This feature allows using the MQTT Broker as the Frontend and another system as the backend.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingSubscriptionEventArgs.ReasonString">
            <summary>
                Gets or sets the reason string which will be sent to the client in the SUBACK packet.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingSubscriptionEventArgs.Response">
            <summary>
                Gets the response which will be sent to the client via the SUBACK packet.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingSubscriptionEventArgs.Session">
            <summary>
                Gets the current client session.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingSubscriptionEventArgs.SessionItems">
            <summary>
                Gets or sets a key/value collection that can be used to share data within the scope of this session.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingSubscriptionEventArgs.TopicFilter">
            <summary>
                Gets or sets the topic filter.
                The topic filter can contain topics and wildcards.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingSubscriptionEventArgs.UserProperties">
            <summary>
                Gets or sets the user properties.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingUnsubscriptionEventArgs.CancellationToken">
            <summary>
                Gets the cancellation token which can indicate that the client connection gets down.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingUnsubscriptionEventArgs.ClientId">
            <summary>
                Gets the client identifier.
                Hint: This identifier needs to be unique over all used clients / devices on the broker to avoid connection issues.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingUnsubscriptionEventArgs.CloseConnection">
            <summary>
                Gets or sets whether the broker should close the client connection.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingUnsubscriptionEventArgs.ProcessUnsubscription">
            <summary>
                Gets or sets whether the broker should remove an internal subscription for the client.
                The broker can also avoid this and return "success" to the client.
                This feature allows using the MQTT Broker as the Frontend and another system as the backend.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingUnsubscriptionEventArgs.Response">
            <summary>
                Gets the response which will be sent to the client via the UNSUBACK pocket.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingUnsubscriptionEventArgs.SessionItems">
            <summary>
                Gets or sets a key/value collection that can be used to share data within the scope of this session.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingUnsubscriptionEventArgs.Topic">
            <summary>
                Gets or sets the MQTT topic.
                In MQTT, the word topic refers to an UTF-8 string that the broker uses to filter messages for each connected
                client.
                The topic consists of one or more topic levels. Each topic level is separated by a forward slash (topic level
                separator).
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InterceptingUnsubscriptionEventArgs.UserProperties">
            <summary>
                Gets or sets the user properties.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Server.PreparingSessionEventArgs.WillDelayInterval">
            <summary>
                Gets the will delay interval.
                This is the time between the client disconnect and the time the will message will be sent.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.SessionDeletedEventArgs.Id">
            <summary>
                Gets the ID of the session.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.SessionDeletedEventArgs.SessionItems">
            <summary>
                Gets or sets a key/value collection that can be used to share data within the scope of this session.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ValidatingConnectionEventArgs.AssignedClientIdentifier">
            <summary>
                Gets or sets the assigned client identifier.
                MQTTv5 only.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ValidatingConnectionEventArgs.AuthenticationData">
            <summary>
                Gets or sets the authentication data.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ValidatingConnectionEventArgs.AuthenticationMethod">
            <summary>
                Gets or sets the authentication method.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ValidatingConnectionEventArgs.ChannelAdapter">
            <summary>
                Gets the channel adapter. This can be a _MqttConnectionContext_ (used in ASP.NET), a _MqttChannelAdapter_ (used for
                TCP or WebSockets) or a custom implementation.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ValidatingConnectionEventArgs.CleanSession">
            <summary>
                Gets or sets a value indicating whether clean sessions are used or not.
                When a client connects to a broker it can connect using either a non persistent connection (clean session) or a
                persistent connection.
                With a non persistent connection the broker doesn't store any subscription information or undelivered messages for
                the client.
                This mode is ideal when the client only publishes messages.
                It can also connect as a durable client using a persistent connection.
                In this mode, the broker will store subscription information, and undelivered messages for the client.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ValidatingConnectionEventArgs.ClientId">
            <summary>
                Gets the client identifier.
                Hint: This identifier needs to be unique over all used clients / devices on the broker to avoid connection issues.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ValidatingConnectionEventArgs.KeepAlivePeriod">
            <summary>
                Gets or sets the keep alive period.
                The connection is normally left open by the client so that is can send and receive data at any time.
                If no data flows over an open connection for a certain time period then the client will generate a PINGREQ and
                expect to receive a PINGRESP from the broker.
                This message exchange confirms that the connection is open and working.
                This period is known as the keep alive period.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ValidatingConnectionEventArgs.MaximumPacketSize">
            <summary>
                A value of 0 indicates that the value is not used.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ValidatingConnectionEventArgs.ReasonCode">
            <summary>
                Gets or sets the reason code. When a MQTTv3 client connects the enum value must be one which is
                also supported in MQTTv3. Otherwise the connection attempt will fail because not all codes can be
                converted properly.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ValidatingConnectionEventArgs.ReceiveMaximum">
            <summary>
                Gets or sets the receive maximum.
                This gives the maximum length of the receive messages.
                A value of 0 indicates that the value is not used.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ValidatingConnectionEventArgs.RequestProblemInformation">
            <summary>
                Gets the request problem information.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ValidatingConnectionEventArgs.RequestResponseInformation">
            <summary>
                Gets the request response information.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ValidatingConnectionEventArgs.ResponseAuthenticationData">
            <summary>
                Gets or sets the response authentication data.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ValidatingConnectionEventArgs.ResponseUserProperties">
            <summary>
                Gets or sets the response user properties.
                In MQTT 5, user properties are basic UTF-8 string key-value pairs that you can append to almost every type of MQTT
                packet.
                As long as you don’t exceed the maximum message size, you can use an unlimited number of user properties to add
                metadata to MQTT messages and pass information between publisher, broker, and subscriber.
                The feature is very similar to the HTTP header concept.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ValidatingConnectionEventArgs.ServerReference">
            <summary>
                Gets or sets the server reference. This can be used together with i.e. "Server Moved" to send
                a different server address to the client.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ValidatingConnectionEventArgs.SessionExpiryInterval">
            <summary>
                Gets the session expiry interval.
                The time after a session expires when it's not actively used.
                A value of 0 means no expiation.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ValidatingConnectionEventArgs.SessionItems">
            <summary>
                Gets or sets a key/value collection that can be used to share data within the scope of this session.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ValidatingConnectionEventArgs.TopicAliasMaximum">
            <summary>
                Gets or sets the topic alias maximum.
                This gives the maximum length of the topic alias.
                A value of 0 indicates that the value is not used.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ValidatingConnectionEventArgs.UserProperties">
            <summary>
                Gets or sets the user properties.
                In MQTT 5, user properties are basic UTF-8 string key-value pairs that you can append to almost every type of MQTT
                packet.
                As long as you don’t exceed the maximum message size, you can use an unlimited number of user properties to add
                metadata to MQTT messages and pass information between publisher, broker, and subscriber.
                The feature is very similar to the HTTP header concept.
                <remarks>MQTT 5.0.0+ feature.</remarks>
            </summary>
        </member>
        <member name="P:MQTTnet.Server.ValidatingConnectionEventArgs.WillDelayInterval">
            <summary>
                Gets or sets the will delay interval.
                This is the time between the client disconnect and the time the will message will be sent.
                A value of 0 indicates that the value is not used.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.InjectedMqttApplicationMessage.CustomSessionItems">
            <summary>
                Gets or sets the session items which should be used for all event handlers which are involved in message
                processing.
                If _null_ is specified the singleton session items from the server are used instead.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.MqttClientStatistics.LastPacketReceivedTimestamp">
            <summary>
                Timestamp of the last package that has been sent to the client ("received" from the client's perspective)
            </summary>
        </member>
        <member name="P:MQTTnet.Server.MqttClientStatistics.LastPacketSentTimestamp">
            <summary>
                Timestamp of the last package that has been received from the client ("sent" from the client's perspective)
            </summary>
        </member>
        <member name="P:MQTTnet.Server.MqttSession.IsPersistent">
            <summary>
                Session should persist if CleanSession was set to false (Mqtt3) or if SessionExpiryInterval != 0 (Mqtt5)
            </summary>
        </member>
        <member name="T:MQTTnet.Server.TopicHashMaskSubscriptions">
            <summary>
                Helper class that stores subscriptions by their topic hash mask.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.MqttServer.ServerSessionItems">
            <summary>
                Gives access to the session items which belong to this server. This session items are passed
                to several events instead of the client session items if the event is caused by the server instead of a client.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.MqttServerOptions.WriterBufferSize">
            <summary>
                Gets or sets the default and initial size of the packet write buffer.
                It is recommended to set this to a value close to the usual expected packet size * 1.5.
                Do not change this value when no memory issues are experienced.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.MqttServerOptions.WriterBufferSizeMax">
            <summary>
                Gets or sets the maximum size of the buffer writer. The writer will reduce its internal buffer
                to this value after serializing a packet.
                Do not change this value when no memory issues are experienced.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.MqttServerTcpEndpointBaseOptions.KeepAlive">
            <summary>
                Gets or sets whether the sockets keep alive feature should be used.
                The value _null_ indicates that the OS and framework defaults should be used.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.MqttServerTcpEndpointBaseOptions.TcpKeepAliveInterval">
            <summary>
                Gets or sets the TCP keep alive interval.
                The value _null_ indicates that the OS and framework defaults should be used.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.MqttServerTcpEndpointBaseOptions.TcpKeepAliveRetryCount">
            <summary>
                Gets or sets the TCP keep alive retry count.
                The value _null_ indicates that the OS and framework defaults should be used.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.MqttServerTcpEndpointBaseOptions.TcpKeepAliveTime">
            <summary>
                Gets or sets the TCP keep alive time.
                The value _null_ indicates that the OS and framework defaults should be used.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.MqttServerTcpEndpointBaseOptions.ReuseAddress">
            <summary>
                This requires admin permissions on Linux.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.MqttClientStatus.Id">
            <summary>
            Gets or sets the client identifier.
            Hint: This identifier needs to be unique over all used clients / devices on the broker to avoid connection issues.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.SubscribeResponse.ReasonCode">
            <summary>
            Gets or sets the reason code which is sent to the client.
            The subscription is skipped when the value is not GrantedQoS_.
            MQTTv5 only.
            </summary>
        </member>
        <member name="P:MQTTnet.Server.UnsubscribeResponse.ReasonCode">
            <summary>
            Gets or sets the reason code which is sent to the client.
            MQTTv5 only.
            </summary>
        </member>
    </members>
</doc>