From dda67b9d7cf523f2147a06b9eafc613bc239b84a Mon Sep 17 00:00:00 2001 From: Chris R Date: Thu, 3 Sep 2015 12:39:36 -0700 Subject: [PATCH] Remove unused RedirectFromIdentityProviderContext. --- .../RedirectFromIdentityProviderContext.cs | 22 ------------------- .../RedirectToIdentityProviderContext.cs | 2 +- 2 files changed, 1 insertion(+), 23 deletions(-) delete mode 100644 src/Microsoft.AspNet.Authentication.OpenIdConnect/Events/RedirectFromIdentityProviderContext.cs 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.