using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Threading.Tasks; namespace JsonRPC4.Router.Abstractions { public interface IRpcRequestMatcher { RpcMethodInfo GetMatchingMethod(RpcRequest request, IReadOnlyList methods); } }