mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-06-13 22:48:42 +00:00
28 lines
675 B
C#
28 lines
675 B
C#
using Esiur.Core;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Security.Authority
|
|
{
|
|
internal class PpapAuthenticationProvider : IAuthenticationProvider
|
|
{
|
|
public string DefaultName => "PPAP";
|
|
|
|
public IAuthenticationHandler CreateAuthenticationHandler(AuthenticationContext context)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public AsyncReply<bool> Login(Session session)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public AsyncReply<bool> Logout(Session session)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|