namespace ZB.MOM.WW.MxGateway.Server.Security.Authentication;
public interface IApiKeyParser
{
/// Attempts to parse an authorization header and extract the API key.
/// Authorization header value to parse.
/// Parsed API key if successful.
bool TryParseAuthorizationHeader(string? authorizationHeader, out ParsedApiKey? apiKey);
}