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; } } }