12345678910111213141516 |
- using InABox.Server;
- namespace InABox.Rpc
- {
- public class RpcPingHandler : RpcCommandHandler<IRpcServer, RpcPingCommand, RpcPingParameters, RpcPingResult>
- {
- protected override RpcPingResult Execute(IRpcSession session, RpcPingParameters? parameters)
- {
- return new RpcPingResult();
- }
- public RpcPingHandler(IRpcServer sender) : base(sender)
- {
- }
- }
- }
|