11 lines
237 B
C#
11 lines
237 B
C#
using FluentResults;
|
|
|
|
namespace pgLabII.PgUtils.ConnectionStrings;
|
|
|
|
public interface IPqConnectionStringTokenizer
|
|
{
|
|
bool IsEof { get; }
|
|
Result<string> GetKeyword();
|
|
Result ConsumeEquals();
|
|
Result<string> GetValue();
|
|
}
|