AccessTokenNotAvailableException.Redirect Method

Definition

Overloads

Redirect()

Navigates to InteractiveRequestUrl using the given InteractionOptions to allow refreshing the access token.

Redirect(Action<InteractiveRequestOptions>)

Navigates to InteractiveRequestUrl using the given InteractionOptions to allow refreshing the access token.

Redirect()

Navigates to InteractiveRequestUrl using the given InteractionOptions to allow refreshing the access token.

public:
 void Redirect();
public void Redirect ();
member this.Redirect : unit -> unit
Public Sub Redirect ()

Applies to

Redirect(Action<InteractiveRequestOptions>)

Navigates to InteractiveRequestUrl using the given InteractionOptions to allow refreshing the access token.

public void Redirect (Action<Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions> configureInteractionOptions);
member this.Redirect : Action<Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions> -> unit
Public Sub Redirect (configureInteractionOptions As Action(Of InteractiveRequestOptions))

Parameters

configureInteractionOptions
Action<InteractiveRequestOptions>

A callback to further configure the initial set of options to be passed during the interactive token adquisition flow.

Applies to