123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace JsonRPC4.Router
- {
- public class RpcRouteInfo
- {
- public RpcMethodInfo MethodInfo
- {
- get;
- }
- public RpcPath Path
- {
- get;
- }
- public IServiceProvider RequestServices
- {
- get;
- }
- internal RpcRouteInfo(RpcMethodInfo methodInfo, RpcPath path, IServiceProvider requestServices)
- {
- MethodInfo = methodInfo;
- Path = path;
- RequestServices = requestServices;
- }
- }
- }
|