1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
-
- #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 MqttMsgConnectEventArgs : EventArgs
- {
-
-
-
- public MqttMsgConnect Message { get; private set; }
-
-
-
-
- public MqttMsgConnectEventArgs(MqttMsgConnect connect)
- {
- this.Message = connect;
- }
- }
- }
|