12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Reflection;
- using System.Threading.Tasks;
- namespace JsonRPC4.Router
- {
- public class RpcMethodInfo
- {
- public MethodInfo Method
- {
- get;
- }
- public object[] Parameters
- {
- get;
- }
- public RpcMethodInfo(MethodInfo method, object[] parameters)
- {
- Method = method;
- Parameters = parameters;
- }
- }
- }
|