2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2026-06-13 14:38:43 +00:00
Files
2026-05-25 17:30:09 +03:00

20 lines
441 B
C#

using Esiur.Core;
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; }
AsyncReply<bool> Login(Session session);
AsyncReply<bool> Logout(Session session);
}
}