Table of Contents

Enum LoginError

Represents the error status that can occur during a login action.

public enum LoginError

Fields

DifferentUserAlreadyLoggedIn = 2

A different user is already logged in, preventing the current login attempt.

ExpiredJwt = 5

The JWT (JSON Web Token) provided during the login process has expired.

InvalidJwt = 1

The JWT (JSON Web Token) provided during the login process is invalid.

RequestedUserAlreadyLoggedIn = 3

The user being requested for login is already logged in.

UnknownFailure = 0

An unknown error occurred that does not fall into any of the other defined categories.

UserNotFound = 4

The user specified for login could not be found.