Esempio n. 1
0
 /// <summary>
 /// Event args for the base TxHandler class
 /// </summary>
 public SldwTxEventArgs(eSldwTxEventType type, SldwTxHandler.eSldwTxDeviceType value)
 {
     EventType  = type;
     DeviceType = value;
 }
Esempio n. 2
0
 /// <summary>
 /// Event args for the base TxHandler class
 /// </summary>
 public SldwTxEventArgs(eSldwTxEventType type, string value)
 {
     EventType   = type;
     StringValue = value;
 }
Esempio n. 3
0
 /// <summary>
 /// Event args for the base TxHandler class
 /// </summary>
 public SldwTxEventArgs(eSldwTxEventType type, bool value)
 {
     EventType = type;
     BoolValue = value;
 }
Esempio n. 4
0
 /// <summary>
 /// Event args for the base TxHandler class
 /// </summary>
 public SldwTxEventArgs(eSldwTxEventType type, double value)
 {
     EventType   = type;
     DoubleValue = value;
 }
Esempio n. 5
0
 /// <summary>
 /// Event args for the base TxHandler class
 /// </summary>
 public SldwTxEventArgs(eSldwTxEventType type, SldwTxHandler.eSldwTxBatteryType value)
 {
     EventType   = type;
     BatteryType = value;
 }