IScanService.cs 343 B

123456789101112131415
  1. using System;
  2. using System.Threading.Tasks;
  3. namespace LogoForceTestApp.Services
  4. {
  5. public interface IScanService
  6. {
  7. void Close();
  8. Task<bool> InitAsync(string ip, int port);
  9. string Read(string command);
  10. Task<string> ReadAsync(string command);
  11. event EventHandler<string> ScanCompleted;
  12. }
  13. }