CookieAuthenticationEvents.RedirectToReturnUrl Method

Definition

Overloads

RedirectToReturnUrl(CookieRedirectContext)

Implements the interface method by invoking the related delegate method.

RedirectToReturnUrl(RedirectContext<CookieAuthenticationOptions>)

Invoked when the client is being redirected after log out.

RedirectToReturnUrl(CookieRedirectContext)

Implements the interface method by invoking the related delegate method.

public:
 virtual System::Threading::Tasks::Task ^ RedirectToReturnUrl(Microsoft::AspNetCore::Authentication::Cookies::CookieRedirectContext ^ context);
public virtual System.Threading.Tasks.Task RedirectToReturnUrl (Microsoft.AspNetCore.Authentication.Cookies.CookieRedirectContext context);
abstract member RedirectToReturnUrl : Microsoft.AspNetCore.Authentication.Cookies.CookieRedirectContext -> System.Threading.Tasks.Task
override this.RedirectToReturnUrl : Microsoft.AspNetCore.Authentication.Cookies.CookieRedirectContext -> System.Threading.Tasks.Task
Public Overridable Function RedirectToReturnUrl (context As CookieRedirectContext) As Task

Parameters

context
CookieRedirectContext

Contains information about the event

Returns

Implements

Applies to

RedirectToReturnUrl(RedirectContext<CookieAuthenticationOptions>)

Source:
CookieAuthenticationEvents.cs
Source:
CookieAuthenticationEvents.cs

Invoked when the client is being redirected after log out.

public:
 virtual System::Threading::Tasks::Task ^ RedirectToReturnUrl(Microsoft::AspNetCore::Authentication::RedirectContext<Microsoft::AspNetCore::Authentication::Cookies::CookieAuthenticationOptions ^> ^ context);
public virtual System.Threading.Tasks.Task RedirectToReturnUrl (Microsoft.AspNetCore.Authentication.RedirectContext<Microsoft.AspNetCore.Authentication.Cookies.CookieAuthenticationOptions> context);
abstract member RedirectToReturnUrl : Microsoft.AspNetCore.Authentication.RedirectContext<Microsoft.AspNetCore.Authentication.Cookies.CookieAuthenticationOptions> -> System.Threading.Tasks.Task
override this.RedirectToReturnUrl : Microsoft.AspNetCore.Authentication.RedirectContext<Microsoft.AspNetCore.Authentication.Cookies.CookieAuthenticationOptions> -> System.Threading.Tasks.Task
Public Overridable Function RedirectToReturnUrl (context As RedirectContext(Of CookieAuthenticationOptions)) As Task

Parameters

Returns

Applies to