9 lines
221 B
C#
9 lines
221 B
C#
namespace MxGateway.Server.Security.Authentication;
|
|
|
|
public interface IApiKeyVerifier
|
|
{
|
|
Task<ApiKeyVerificationResult> VerifyAsync(
|
|
string? authorizationHeader,
|
|
CancellationToken cancellationToken);
|
|
}
|