10 lines
195 B
C#
10 lines
195 B
C#
|
|
namespace pgLabII.PgUtils.ConnectionStrings;
|
|||
|
|
|
|||
|
|
public interface IPqConnectionStringTokenizer
|
|||
|
|
{
|
|||
|
|
bool Eof { get; }
|
|||
|
|
string GetKeyword();
|
|||
|
|
void ConsumeEquals();
|
|||
|
|
string GetValue();
|
|||
|
|
}
|