InteractionType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The type of authentication request.
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))]
public enum InteractionType
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter<Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType>))]
public enum InteractionType
[<System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))>]
type InteractionType =
[<System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter<Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType>))>]
type InteractionType =
Public Enum InteractionType
- Inheritance
-
InteractionType
- Attributes
Fields
Name | Value | Description |
---|---|---|
SignIn | 0 | Authenticating or reauthenticating the user and provisioning the default access token. |
GetToken | 1 | Provisioning a token interactively because silent provisioning failed, either because the end user has not consented or because the existing credentials have expired. |
SignOut | 2 | Logging the user out. |