mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-06-13 14:38:43 +00:00
15 lines
322 B
C#
15 lines
322 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Security.Authority
|
|
{
|
|
public interface IAuthenticationProvider
|
|
{
|
|
public IAuthenticationHandler
|
|
CreateAuthenticationHandler(AuthenticationContext context);
|
|
|
|
public string DefaultName { get; }
|
|
}
|
|
}
|