123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Reflection;
- using System.Threading.Tasks;
- namespace JsonRPC4.Router.Defaults
- {
- public class RpcEndpointInfo
- {
-
- public Dictionary<RpcPath, List<MethodInfo>> Routes { get; }
- // Token: 0x060000D3 RID: 211 RVA: 0x00003A40 File Offset: 0x00001C40
- public RpcEndpointInfo(Dictionary<RpcPath, List<MethodInfo>> routes)
- {
- if (routes == null)
- {
- throw new ArgumentNullException("routes");
- }
- this.Routes = routes;
- }
- }
- }
|