public void ResetUik(ResetSoftReason reason) { SynchronizationEnabled = false; if (IsRemoteScannerConnected) { EnablePing(false); RemoteScanner.ResetSoft(reason, true, true); } ((IScannerInteractionChannel)this).ResetSoft(reason, false, true); }
private void ResetPrintReportExecutingNow(bool printFinishedOnLocal) { Logger.LogVerbose(printFinishedOnLocal ? Message.SyncPrintReportFinishedOnLocal : Message.SyncPrintReportFinishedOnRemote); if (printFinishedOnLocal && IsRemoteScannerConnected) { RemoteScanner.PrintReportFinished(); } EnablePing(true); }
private void SetPrintReportExecutingNow(bool printStartingOnLocal) { Logger.LogVerbose(printStartingOnLocal ? Message.SyncPrintReportStartingOnLocal : Message.SyncPrintReportStartingOnRemote); if (printStartingOnLocal && IsRemoteScannerConnected) { RemoteScanner.PrintReportStarting(); } EnablePing(false); }