7 lines
181 B
C#
7 lines
181 B
C#
namespace MxGateway.Server.Security.Authentication;
|
|
|
|
public interface IApiKeyParser
|
|
{
|
|
bool TryParseAuthorizationHeader(string? authorizationHeader, out ParsedApiKey? apiKey);
|
|
}
|