You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Framework/Connected.Rest/Api/IApiResolutionService.cs

15 lines
372 B

using System.Collections.Immutable;
using System.Reflection;
using Connected.Annotations;
using Microsoft.AspNetCore.Http;
namespace Connected.Rest;
internal interface IApiResolutionService
{
ApiInvokeDescriptor? ResolveMethod(HttpContext context);
Type? ResolveArgument(ParameterInfo parameter);
ImmutableList<Tuple<string, ServiceMethodVerbs>> QueryRoutes();
}