12345678910111213 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Threading.Tasks;
- namespace JsonRPC4.Router.Abstractions
- {
- public interface IRpcRequestHandler
- {
- Task<bool> HandleRequestAsync(RpcPath requestPath, Stream requestBody, IRouteContext routeContext, Stream responseBody);
- }
- }
|