Esempio n. 1
0
 public static void SetValue(this CrestronDeviceWithEvents device, string name, string value)
 {
     device.SetStringValue(name, value);
 }
Esempio n. 2
0
 public static void SetValue(this CrestronDeviceWithEvents device, string name, string format, params object[] args)
 {
     device.SetStringValue(name, format, args);
 }
Esempio n. 3
0
 public static void SetValue(this CrestronDeviceWithEvents device, uint index, string value)
 {
     device.SetStringValue(index, value);
 }