CSharpHttpServer/SimpleHttpServer/IAuthorizer.cs
2023-11-30 17:31:19 +01:00

8 lines
176 B
C#

using System.Net;
namespace SimpleHttpServer;
public interface IAuthorizer {
public abstract (bool auth, object? data) IsAuthenticated(HttpListenerContext contect);
}