CookieAuthenticationEvents.RedirectToLogin Method

Definition

Overloads

RedirectToLogin(CookieRedirectContext)

Implements the interface method by invoking the related delegate method.

RedirectToLogin(RedirectContext<CookieAuthenticationOptions>)

Invoked when the client is being redirected to the log in url.

RedirectToLogin(CookieRedirectContext)

Implements the interface method by invoking the related delegate method.

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

Parameters

context
CookieRedirectContext

Contains information about the event

Returns

Implements

Applies to

RedirectToLogin(RedirectContext<CookieAuthenticationOptions>)

Source:
CookieAuthenticationEvents.cs
Source:
CookieAuthenticationEvents.cs

Invoked when the client is being redirected to the log in url.

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

Parameters

Returns

Applies to