Developer 02 cfe5df4b1d feat(IAuthClient): IsConnected, ConnectionError und ConnectionError Eigenschaften hinzugefügt.
- Umwandlung der Eigenschaft IsConnectionFailed in eine Erweiterungsmethode.
2025-02-03 16:38:22 +01:00

6 lines
191 B
C#

namespace DigitalData.Auth.Abstractions;
public static class ClientExtensions
{
public static bool IsConnectionFailed(this IAuthClient client) => client.ConnectionError is not null;
}