Пример #1
0
 /// <summary>
 /// Event args for the DeviceHandler class
 /// </summary>
 public Tcc2DeviceEventArgs(eTcc2DeviceEventType type, Tcc2DeviceHandler.eLedColor value)
 {
     EventType = type;
     LedColor  = value;
 }
Пример #2
0
 /// <summary>
 /// Event args for the DeviceHandler class
 /// </summary>
 public Tcc2DeviceEventArgs(eTcc2DeviceEventType type, bool value)
 {
     EventType = type;
     BoolValue = value;
 }
Пример #3
0
 /// <summary>
 /// Event args for the DeviceHandler class
 /// </summary>
 public Tcc2DeviceEventArgs(eTcc2DeviceEventType type, int value)
 {
     EventType = type;
     IntValue  = value;
 }
Пример #4
0
 /// <summary>
 /// Event args for the DeviceHandler class
 /// </summary>
 public Tcc2DeviceEventArgs(eTcc2DeviceEventType type, string value)
 {
     EventType   = type;
     StringValue = value;
 }