10 lines
238 B
C#
10 lines
238 B
C#
namespace pgLabII.PgUtils.ConnectionStrings;
|
|
|
|
public interface IPqConnectionStringTokenizer
|
|
{
|
|
bool Eof { get; }
|
|
//PqToken NextToken(out string? text);
|
|
string GetKeyword();
|
|
void ConsumeEquals();
|
|
string GetValue();
|
|
}
|