feat(IAuthClient): IsConnected, ConnectionError und ConnectionError Eigenschaften hinzugefügt.
- Umwandlung der Eigenschaft IsConnectionFailed in eine Erweiterungsmethode.
This commit is contained in:
@@ -2,6 +2,12 @@
|
||||
|
||||
public interface IAuthClient : IAuthClientHandler
|
||||
{
|
||||
bool IsConnected { get; }
|
||||
|
||||
Exception? ConnectionError { get; }
|
||||
|
||||
bool IsConnectionFailed => ConnectionError is not null;
|
||||
|
||||
Task StartAsync();
|
||||
|
||||
Task<bool> TryStartAsync();
|
||||
|
||||
Reference in New Issue
Block a user