namespace pgLabII.PgUtils.ConnectionStrings; public interface IPqConnectionStringTokenizer { bool Eof { get; } //PqToken NextToken(out string? text); string GetKeyword(); void ConsumeEquals(); string GetValue(); }