mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-06-13 22:48:42 +00:00
21 lines
519 B
C#
21 lines
519 B
C#
using Esiur.Net.Packets;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Security.Authority
|
|
{
|
|
public interface IAuthenticationHandler
|
|
{
|
|
|
|
IAuthenticationProvider Provider { get; }
|
|
public string Protocol { get; }
|
|
//public AuthenticationMode Mode { get; }
|
|
//public AuthenticationResult Initialize(object authData);
|
|
|
|
public AuthenticationResult Process(object authData);
|
|
|
|
//public AuthenticationResult? Result { get; }
|
|
}
|
|
}
|