This repository was archived by the owner on Dec 13, 2018. It is now read-only.
File tree 3 files changed +5
-5
lines changed
Microsoft.AspNetCore.Authentication
Microsoft.AspNetCore.Authentication.OpenIdConnect
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -282,7 +282,7 @@ public CookieBuilder NonceCookie
282
282
set => _nonceCookieBuilder = value ?? throw new ArgumentNullException ( nameof ( value ) ) ;
283
283
}
284
284
285
- private class OpenIdConnectNonceCookieBuilder : RequestPathCookieBuilder
285
+ private class OpenIdConnectNonceCookieBuilder : RequestPathBaseCookieBuilder
286
286
{
287
287
private readonly OpenIdConnectOptions _options ;
288
288
Original file line number Diff line number Diff line change 7
7
namespace Microsoft . AspNetCore . Authentication . Internal
8
8
{
9
9
/// <summary>
10
- /// A cookie builder that set <see cref="CookieOptions.Path"/> to the original path base plus some scope .
10
+ /// A cookie builder that sets <see cref="CookieOptions.Path"/> to the request path base.
11
11
/// </summary>
12
- public class RequestPathCookieBuilder : CookieBuilder
12
+ public class RequestPathBaseCookieBuilder : CookieBuilder
13
13
{
14
14
/// <summary>
15
- /// Optional additional path that is appended to the request path base.
15
+ /// Gets an optional value that is appended to the request path base.
16
16
/// </summary>
17
17
protected virtual string AdditionalPath { get ; }
18
18
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ public CookieBuilder CorrelationIdCookie
112
112
set => _correlationIdCookieBuilder = value ?? throw new ArgumentNullException ( nameof ( value ) ) ;
113
113
}
114
114
115
- private class CorrelationIdCookieBuilder : RequestPathCookieBuilder
115
+ private class CorrelationIdCookieBuilder : RequestPathBaseCookieBuilder
116
116
{
117
117
private readonly RemoteAuthenticationOptions _options ;
118
118
You can’t perform that action at this time.
0 commit comments