|
|
@@ -27,7 +27,7 @@ public class CookieBuilder
|
|
|
/// The cookie path.
|
|
|
/// </summary>
|
|
|
/// <remarks>
|
|
|
- /// Determines the value that will set on <see cref="CookieOptions.Path"/>.
|
|
|
+ /// Determines the value that will be set for <see cref="CookieOptions.Path"/>.
|
|
|
/// </remarks>
|
|
|
public virtual string? Path { get; set; }
|
|
|
|
|
|
@@ -35,15 +35,15 @@ public class CookieBuilder
|
|
|
/// The domain to associate the cookie with.
|
|
|
/// </summary>
|
|
|
/// <remarks>
|
|
|
- /// Determines the value that will set on <see cref="CookieOptions.Domain"/>.
|
|
|
+ /// Determines the value that will be set for <see cref="CookieOptions.Domain"/>.
|
|
|
/// </remarks>
|
|
|
public virtual string? Domain { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
- /// Indicates whether a cookie is accessible by client-side script.
|
|
|
+ /// Indicates whether a cookie is inaccessible by client-side script.
|
|
|
/// </summary>
|
|
|
/// <remarks>
|
|
|
- /// Determines the value that will set on <see cref="CookieOptions.HttpOnly"/>.
|
|
|
+ /// Determines the value that will be set on <see cref="CookieOptions.HttpOnly"/>.
|
|
|
/// </remarks>
|
|
|
public virtual bool HttpOnly { get; set; }
|
|
|
|
|
|
@@ -51,7 +51,7 @@ public class CookieBuilder
|
|
|
/// The SameSite attribute of the cookie. The default value is <see cref="SameSiteMode.Unspecified"/>
|
|
|
/// </summary>
|
|
|
/// <remarks>
|
|
|
- /// Determines the value that will set on <see cref="CookieOptions.SameSite"/>.
|
|
|
+ /// Determines the value that will be set for <see cref="CookieOptions.SameSite"/>.
|
|
|
/// </remarks>
|
|
|
public virtual SameSiteMode SameSite { get; set; } = SameSiteMode.Unspecified;
|
|
|
|