| 1234567891011121314151617181920212223242526272829303132333435 |
- namespace MQTTnet.Protocol
- {
- public enum MqttDisconnectReasonCode
- {
- NormalDisconnection = 0,
- DisconnectWithWillMessage = 4,
- UnspecifiedError = 128,
- MalformedPacket = 129,
- ProtocolError = 130,
- ImplementationSpecificError = 131,
- NotAuthorized = 135,
- ServerBusy = 137,
- ServerShuttingDown = 139,
- KeepAliveTimeout = 141,
- SessionTakenOver = 142,
- TopicFilterInvalid = 143,
- TopicNameInvalid = 144,
- ReceiveMaximumExceeded = 147,
- TopicAliasInvalid = 148,
- PacketTooLarge = 149,
- MessageRateTooHigh = 150,
- QuotaExceeded = 151,
- AdministrativeAction = 152,
- PayloadFormatInvalid = 153,
- RetainNotSupported = 154,
- QoSNotSupported = 155,
- UseAnotherServer = 156,
- ServerMoved = 157,
- SharedSubscriptionsNotSupported = 158,
- ConnectionRateExceeded = 159,
- MaximumConnectTime = 160,
- SubscriptionIdentifiersNotSupported = 161,
- WildcardSubscriptionsNotSupported = 162
- }
- }
|