RemoteAuthenticationStatus Enum

Definition

Represents the status of an authentication operation.

public enum class RemoteAuthenticationStatus
public enum RemoteAuthenticationStatus
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))]
public enum RemoteAuthenticationStatus
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter<Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationStatus>))]
public enum RemoteAuthenticationStatus
type RemoteAuthenticationStatus = 
[<System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))>]
type RemoteAuthenticationStatus = 
[<System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter<Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationStatus>))>]
type RemoteAuthenticationStatus = 
Public Enum RemoteAuthenticationStatus
Inheritance
RemoteAuthenticationStatus
Attributes

Fields

Failure 2

There was an error performing the authentication operation.

OperationCompleted 3

The operation in the current navigation context has completed. This signals that the application running on the current browser context is about to be shut down and no other work is required.

Redirect 0

The application is going to be redirected.

Success 1

The authentication operation completed successfully.

Applies to