IRpcRequestMatcher.cs 283 B

1234567891011
  1. using System.Collections.Generic;
  2. using System.Reflection;
  3. using EdjCase.JsonRpc.Core;
  4. namespace EdjCase.JsonRpc.Router.Abstractions
  5. {
  6. public interface IRpcRequestMatcher
  7. {
  8. List<RpcMethodInfo> FilterAndBuildMethodInfoByRequest(List<MethodInfo> methods, RpcRequest request);
  9. }
  10. }