RemoteAuthenticationEvents Class

Namespace
Microsoft.AspNetCore.Authentication
Assemblies
  • Microsoft.AspNetCore.Authentication

Syntax

public class RemoteAuthenticationEvents : IRemoteAuthenticationEvents
class Microsoft.AspNetCore.Authentication.RemoteAuthenticationEvents

Properties

Microsoft.AspNetCore.Authentication.RemoteAuthenticationEvents.OnRemoteFailure
Return type:System.Func<Microsoft.AspNetCore.Authentication.FailureContext>
public Func<FailureContext, Task> OnRemoteFailure { get; set; }
Microsoft.AspNetCore.Authentication.RemoteAuthenticationEvents.OnTicketReceived
Return type:System.Func<Microsoft.AspNetCore.Authentication.TicketReceivedContext>
public Func<TicketReceivedContext, Task> OnTicketReceived { get; set; }

Methods

RemoteFailure(Microsoft.AspNetCore.Authentication.FailureContext)

Invoked when there is a remote failure

Return type:System.Threading.Tasks.Task
public virtual Task RemoteFailure(FailureContext context)
TicketReceived(Microsoft.AspNetCore.Authentication.TicketReceivedContext)

Invoked after the remote ticket has been received.

Return type:System.Threading.Tasks.Task
public virtual Task TicketReceived(TicketReceivedContext context)