Files
mxaccessgw/src/MxGateway.Server/Security/Authentication/IApiKeyParser.cs
T
2026-04-26 16:40:46 -04:00

7 lines
181 B
C#

namespace MxGateway.Server.Security.Authentication;
public interface IApiKeyParser
{
bool TryParseAuthorizationHeader(string? authorizationHeader, out ParsedApiKey? apiKey);
}