IRpcParameter.cs 260 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace JsonRPC4.Router
  6. {
  7. public interface IRpcParameter
  8. {
  9. RpcParameterType Type
  10. {
  11. get;
  12. }
  13. bool TryGetValue(Type type, out object value);
  14. }
  15. }