Ping.cs 397 B

1234567891011121314
  1. namespace InABox.Rpc
  2. {
  3. public class RpcPingHandler : RpcCommandHandler<IRpcServer, RpcPingCommand, RpcPingParameters, RpcPingResult>
  4. {
  5. protected override RpcPingResult Execute(IRpcSession session, RpcPingParameters? parameters)
  6. {
  7. return new RpcPingResult();
  8. }
  9. public RpcPingHandler(IRpcServer sender) : base(sender)
  10. {
  11. }
  12. }
  13. }