ln.http/ln.http/IHttpAuthenticationSource.cs

7 lines
184 B
C#
Raw Permalink Normal View History

2022-05-28 19:17:00 +02:00
namespace ln.http
{
public interface IHttpAuthenticationSource
{
bool AuthenticatePrincipal(HttpRequestContext requestContext, out HttpPrincipal httpPrincipal);
2022-05-28 19:17:00 +02:00
}
}