Vixen
02b45cc4
csharp
public record class SignInResponse

What the gate hands back: a bearer token and who it says you are.

Read the guide page for this →

Fields and properties (3)

  • public string Token

    Carried on every later request. Opaque — the client cannot read or forge it.

  • public Guid Account

    Which account, so a client can tell two of its own logins apart.

  • public DateTimeOffset Expires

    When it stops working. Sign in again; there is no refresh.

Methods (1)

  • public SignInResponse(string Token, Guid Account, DateTimeOffset Expires)

    What the gate hands back: a bearer token and who it says you are.

Used by (8)

  • GateClientVixen.Live.Client
  • GateClientTestsVixen.Live.Client.Tests
  • GateConnectionVixen.Live.Client
  • GateConnectionTestsVixen.Live.Client.Tests
  • GateJsonVixen.Live.Abstractions
  • GateProtocolTestsVixen.Live.Abstractions.Tests
  • GateServiceVixen.Live.Gate
  • GateServiceTestsVixen.Live.Gate.Tests