Beispiel #1
0
 public ConnectToServerCommand(iLopController controller) :
     base(controller)
 {
     this.type = iLopCommandType.ConnentTotServer;
 }
Beispiel #2
0
 public ReadConnectStatusCommand(iLopController controller) :
     base(controller)
 {
     this.type = iLopCommandType.ReadConnectStatus;
 }
Beispiel #3
0
 public WriteDeviceKeysCommand(iLopController controller) :
     base(controller)
 {
     this.type = iLopCommandType.WriteProductkeys;
 }
Beispiel #4
0
 public DeviceCommand(iLopController controller)
 {
     this.controller = controller;
     this.command    = "";
     this.type       = iLopCommandType.None;
 }
Beispiel #5
0
 public ReadDeviceKeysCommand(iLopController controller) :
     base(controller)
 {
     this.type = iLopCommandType.ReadProductkeys;
 }