IRPCServer.cs 198 B

123456789101112131415
  1. using InABox.Core;
  2. namespace InABox.Rpc
  3. {
  4. public interface IRpcServer
  5. {
  6. void Start();
  7. void Stop();
  8. event LogEvent? OnLog;
  9. bool IsSecure();
  10. }
  11. }