From f17d9a4d0f747dd65de83a4ff898e68b37c9d34d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Chalet?= Date: Fri, 2 Jun 2017 13:56:12 +0200 Subject: [PATCH] Add back MatchEndpointContext.Options --- .../Events/MatchEndpointContext.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/AspNet.Security.OpenIdConnect.Server/Events/MatchEndpointContext.cs b/src/AspNet.Security.OpenIdConnect.Server/Events/MatchEndpointContext.cs index 4977d042..fd25110c 100644 --- a/src/AspNet.Security.OpenIdConnect.Server/Events/MatchEndpointContext.cs +++ b/src/AspNet.Security.OpenIdConnect.Server/Events/MatchEndpointContext.cs @@ -23,8 +23,14 @@ public MatchEndpointContext( OpenIdConnectServerOptions options) : base(context) { + Options = options; } + /// + /// Gets the options used by the OpenID Connect server. + /// + public OpenIdConnectServerOptions Options { get; } + /// /// Gets a boolean indicating whether the request /// should be handled by the authorization endpoint.