Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Removes erroneous line breaks and properties which are not used.
  • Loading branch information
Joel Sparks committed Feb 20, 2020
commit ae8c118b675de4e7662506be4496c2e1ee76ebf5
10 changes: 0 additions & 10 deletions src/AspNet.Security.OpenId/Events/OpenIdRedirectContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,5 @@ public OpenIdRedirectContext(HttpContext context,
/// Gets or sets the protocol message that has been generated by the handler up to this point.
/// </summary>
public OpenIdAuthenticationMessage ProtocolMessage { get; set; }

/// <summary>
/// If true, will skip any default logic for this redirect.
/// </summary>
public bool Handled { get; private set; }

/// <summary>
/// Skips any default logic for this redirect.
/// </summary>
public void HandleResponse() => Handled = true;
}
}
2 changes: 0 additions & 2 deletions src/AspNet.Security.OpenId/OpenIdAuthenticationEvents.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,5 @@ public class OpenIdAuthenticationEvents : RemoteAuthenticationEvents
/// <param name="context">The context of the event carries information in and results out.</param>
/// <returns>Task to enable asynchronous execution</returns>
public virtual Task RedirectToIdentityProvider(OpenIdRedirectContext context) => OnRedirectToIdentityProvider(context);


}
}