12 lines
340 B
C#
12 lines
340 B
C#
|
using Microsoft.AspNetCore.Http;
|
|||
|
using Microsoft.IdentityModel.Protocols.OpenIdConnect;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace PoweredSoft.DynamicJwtBearer
|
|||
|
{
|
|||
|
public interface IDynamicJwtBearerHanderConfigurationResolver
|
|||
|
{
|
|||
|
Task<OpenIdConnectConfiguration> ResolveCurrentOpenIdConfiguration(HttpContext context);
|
|||
|
}
|
|||
|
}
|