diff --git a/src/Microsoft.AspNet.Authentication.OpenIdConnect/Events/RedirectFromIdentityProviderContext.cs b/src/Microsoft.AspNet.Authentication.OpenIdConnect/Events/RedirectFromIdentityProviderContext.cs deleted file mode 100644 index fb55ec53e6..0000000000 --- a/src/Microsoft.AspNet.Authentication.OpenIdConnect/Events/RedirectFromIdentityProviderContext.cs +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright (c) .NET Foundation. All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. - -using Microsoft.AspNet.Http; -using Microsoft.IdentityModel.Protocols.OpenIdConnect; - -namespace Microsoft.AspNet.Authentication.OpenIdConnect -{ - public class RedirectFromIdentityProviderContext : BaseControlContext - { - public RedirectFromIdentityProviderContext(HttpContext context, OpenIdConnectAuthenticationOptions options) - : base(context, options) - { - } - - public string SignInScheme { get; set; } - - public bool IsRequestCompleted { get; set; } - - public OpenIdConnectMessage ProtocolMessage { get; set; } - } -} diff --git a/src/Microsoft.AspNet.Authentication.OpenIdConnect/Events/RedirectToIdentityProviderContext.cs b/src/Microsoft.AspNet.Authentication.OpenIdConnect/Events/RedirectToIdentityProviderContext.cs index 705421bdbc..9216e86248 100644 --- a/src/Microsoft.AspNet.Authentication.OpenIdConnect/Events/RedirectToIdentityProviderContext.cs +++ b/src/Microsoft.AspNet.Authentication.OpenIdConnect/Events/RedirectToIdentityProviderContext.cs @@ -10,7 +10,7 @@ namespace Microsoft.AspNet.Authentication.OpenIdConnect { /// /// When a user configures the to be notified prior to redirecting to an IdentityProvider - /// an instance of is passed to the 'RedirectToIdentityProviderContext". + /// an instance of is passed to the 'RedirectToIdentityProvider" event. /// /// protocol specific message. /// protocol specific options.