public DeviceInfoClientHandler(ConnectionSettings settings, Action <string> printOutput, Func <string> getInput, Action wait, Action clearOutput) : base(settings, printOutput, getInput, wait, clearOutput)
 {
     this._client = new DeviceInfoClient(settings);
 }
Beispiel #2
0
 public DeviceInfoClientHandler(FritzDevice device, Action <string> printOutput, Func <string> getInput, Action wait, Action clearOutput) : base(device, printOutput, getInput, wait, clearOutput)
 {
     this._client = device.GetServiceClient <DeviceInfoClient>(); // new DeviceInfoClient(settings);
 }