IRpcMethodProvider.cs 304 B

1234567891011121314
  1. using JsonRPC4.Router;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Reflection;
  6. using System.Threading.Tasks;
  7. namespace JsonRPC4
  8. {
  9. public interface IRpcMethodProvider
  10. {
  11. bool TryGetByPath(RpcPath path, out IReadOnlyList<MethodInfo> methods);
  12. }
  13. }