- `IsValidUser`-Methode in `AuthenticationRouteService` hinzugefügt, um Benutzer über die `/IsValidUser`-Route zu validieren. - Drei neue `AuthenticateAsync`-Methoden in `WindreamClientService` implementiert, um verschiedene Benutzerauthentifizierungen zu unterstützen (ICredential, Domain/Name/Passwort und Base64-Authorization-Header). - HttpClient aktualisiert, um Authorization-Header für die Authentifizierung hinzuzufügen.
10 lines
265 B
C#
10 lines
265 B
C#
namespace WindreamHub.Legacy.Client.Models.Authentication
|
|
{
|
|
public class ErrorItem
|
|
{
|
|
public int Entity { get; set; }
|
|
public int Id { get; set; }
|
|
public string Location { get; set; }
|
|
public string Name { get; set; }
|
|
}
|
|
} |