1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #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 MqttMsgUnsubscribeEventArgs : EventArgs
- {
- #region Properties...
-
-
-
- public ushort MessageId
- {
- get { return this.messageId; }
- internal set { this.messageId = value; }
- }
-
-
-
- public string[] Topics
- {
- get { return this.topics; }
- internal set { this.topics = value; }
- }
- #endregion
-
- ushort messageId;
-
- string[] topics;
-
-
-
-
-
- public MqttMsgUnsubscribeEventArgs(ushort messageId, string[] topics)
- {
- this.messageId = messageId;
- this.topics = topics;
- }
- }
- }
|