From d34dc80e02161369908d8560f550e6e2822807b3 Mon Sep 17 00:00:00 2001
From: riccikl <49199340+riccikl@users.noreply.github.com>
Date: Mon, 28 Oct 2019 19:43:04 +0100
Subject: [PATCH] Fix documentation to use see instead of seealso (#15182)
(#15434)
---
.../src/CookieAuthenticationOptions.cs | 26 +++++++++----------
1 file changed, 13 insertions(+), 13 deletions(-)
diff --git a/src/Security/Authentication/Cookies/src/CookieAuthenticationOptions.cs b/src/Security/Authentication/Cookies/src/CookieAuthenticationOptions.cs
index fc4edaa3dd..0248669979 100644
--- a/src/Security/Authentication/Cookies/src/CookieAuthenticationOptions.cs
+++ b/src/Security/Authentication/Cookies/src/CookieAuthenticationOptions.cs
@@ -39,27 +39,27 @@ namespace Microsoft.AspNetCore.Authentication.Cookies
/// Determines the settings used to create the cookie.
///
///
- /// defaults to .
- /// defaults to true.
- /// defaults to .
+ /// defaults to .
+ /// defaults to true.
+ /// defaults to .
///
///
///
///
- /// The default value for cookie name is ".AspNetCore.Cookies".
- /// This value should be changed if you change the name of the AuthenticationScheme, especially if your
+ /// The default value for cookie is ".AspNetCore.Cookies".
+ /// This value should be changed if you change the name of the AuthenticationScheme, especially if your
/// system uses the cookie authentication handler multiple times.
///
///
- /// determines if the browser should allow the cookie to be attached to same-site or cross-site requests.
- /// The default is Lax, which means the cookie is only allowed to be attached to cross-site requests using safe HTTP methods and same-site requests.
+ /// determines if the browser should allow the cookie to be attached to same-site or cross-site requests.
+ /// The default is Lax, which means the cookie is only allowed to be attached to cross-site requests using safe HTTP methods and same-site requests.
///
///
- /// determines if the browser should allow the cookie to be accessed by client-side javascript.
+ /// determines if the browser should allow the cookie to be accessed by client-side javascript.
/// The default is true, which means the cookie will only be passed to http requests and is not made available to script on the page.
///
///
- /// is currently ignored. Use to control lifetime of cookie authentication.
+ /// is currently ignored. Use to control lifetime of cookie authentication.
///
///
public CookieBuilder Cookie
@@ -81,8 +81,8 @@ namespace Microsoft.AspNetCore.Authentication.Cookies
///
/// The LoginPath property is used by the handler for the redirection target when handling ChallengeAsync.
- /// The current url which is added to the LoginPath as a query string parameter named by the ReturnUrlParameter.
- /// Once a request to the LoginPath grants a new SignIn identity, the ReturnUrlParameter value is used to redirect
+ /// The current url which is added to the LoginPath as a query string parameter named by the ReturnUrlParameter.
+ /// Once a request to the LoginPath grants a new SignIn identity, the ReturnUrlParameter value is used to redirect
/// the browser back to the original url.
///
public PathString LoginPath { get; set; }
@@ -99,7 +99,7 @@ namespace Microsoft.AspNetCore.Authentication.Cookies
///
/// The ReturnUrlParameter determines the name of the query string parameter which is appended by the handler
- /// when during a Challenge. This is also the query string parameter looked for when a request arrives on the
+ /// when during a Challenge. This is also the query string parameter looked for when a request arrives on the
/// login path or logout path, in order to return to the original url after the action is performed.
///
public string ReturnUrlParameter { get; set; }
@@ -141,7 +141,7 @@ namespace Microsoft.AspNetCore.Authentication.Cookies
/// even if it is passed to the server after the browser should have purged it.
///
///
- /// This is separate from the value of , which specifies
+ /// This is separate from the value of , which specifies
/// how long the browser will keep the cookie.
///
///