1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Security.Claims;
- using System.Threading.Tasks;
- namespace JsonRPC4
- {
- public interface IRouteContext
- {
- IServiceProvider RequestServices
- {
- get;
- }
- ClaimsPrincipal User
- {
- get;
- }
- IRpcMethodProvider MethodProvider
- {
- get;
- }
- }
- }
|