IRPCProxyServer.cs 166 B

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