2025-08-30 19:41:10 +02:00
|
|
|
|
using FluentResults;
|
|
|
|
|
|
|
|
|
|
|
|
namespace pgLabII.PgUtils.ConnectionStrings;
|
2024-11-24 12:48:12 +01:00
|
|
|
|
|
|
|
|
|
|
public interface IPqConnectionStringTokenizer
|
|
|
|
|
|
{
|
2025-08-30 19:41:10 +02:00
|
|
|
|
bool IsEof { get; }
|
|
|
|
|
|
Result<string> GetKeyword();
|
|
|
|
|
|
Result ConsumeEquals();
|
|
|
|
|
|
Result<string> GetValue();
|
2024-11-24 12:48:12 +01:00
|
|
|
|
}
|