Skip to content
This repository has been archived by the owner on Dec 13, 2018. It is now read-only.

Doc comments for OnRedirectToIdentityProvider #1255

Merged
merged 1 commit into from
Jun 12, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ public class OpenIdConnectEvents : RemoteAuthenticationEvents
public Func<MessageReceivedContext, Task> OnMessageReceived { get; set; } = context => Task.CompletedTask;

/// <summary>
/// Invoked before redirecting to the identity provider to authenticate.
/// Invoked before redirecting to the identity provider to authenticate. This can be used to set ProtocolMessage.State
/// that will be persisted through the authentication process. The ProtocolMessage can also be used to add or customize
/// parameters sent to the identity provider.
/// </summary>
public Func<RedirectContext, Task> OnRedirectToIdentityProvider { get; set; } = context => Task.CompletedTask;

Expand Down