RemoteAuthenticationStatus 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.
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
Name | Value | Description |
---|---|---|
Redirect | 0 | The application is going to be redirected. |
Success | 1 | The authentication operation completed successfully. |
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. |