refactor(AuthClient): Entfernen von ConnectionError und Aktualisierung von tryStartAsync zur Protokollierung

This commit is contained in:
Developer 02
2025-03-05 15:53:57 +01:00
parent 36891b5abb
commit 4e3448b4d4
2 changed files with 10 additions and 25 deletions

View File

@@ -4,10 +4,6 @@ public interface IAuthClient : IAuthListenHandler, IAuthSenderHandler
{
bool IsConnected { get; }
Exception? ConnectionError { get; }
bool IsConnectionFailed => ConnectionError is not null;
Task StartAsync();
Task<bool> TryStartAsync();