123456789101112131415161718 |
- using OCPPServer.Protocol;
- using SuperWebSocket.SubProtocol;
- namespace EVCB_OCPP.WSServer.SuperSocket.Command
- {
- public class ProcessCallResultCmd : SubCommandBase<ClientData>
- {
- public override void ExecuteCommand(ClientData session, SubRequestInfo requestInfo)
- {
- session.ReceiveData(session, requestInfo.Body);
- }
- public override string Name
- {
- get { return "3"; }
- }
- }
- }
|