using JsonRPC4.Router; using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Threading.Tasks; namespace JsonRPC4 { public interface IRpcMethodProvider { bool TryGetByPath(RpcPath path, out IReadOnlyList methods); } }