12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #if (!MF_FRAMEWORK_VERSION_V4_2 && !MF_FRAMEWORK_VERSION_V4_3)
- using System;
- #else
- using Microsoft.SPOT;
- #endif
- namespace uPLibrary.Networking.M2Mqtt.Messages
- {
-
-
-
- public class MqttMsgUnsubscribedEventArgs : EventArgs
- {
- #region Properties...
-
-
-
- public ushort MessageId
- {
- get { return this.messageId; }
- internal set { this.messageId = value; }
- }
- #endregion
-
- ushort messageId;
-
-
-
-
- public MqttMsgUnsubscribedEventArgs(ushort messageId)
- {
- this.messageId = messageId;
- }
- }
- }
|