Files
rudder-csharp-sdk/RudderAuthState.cs
T
2026-08-12 14:04:55 +03:00

12 lines
343 B
C#

namespace RudderSdk.Core;
/// <summary>Session state reported by <see cref="AuthService.AuthStateChanged"/>.</summary>
public enum RudderAuthState
{
/// <summary>A token pair is stored; API calls carry it.</summary>
SignedIn,
/// <summary>No valid session: logged out or the refresh token was rejected.</summary>
SignedOut
}