You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 22, 2018. It is now read-only.
/// This property is obsolete and will be removed in a future version. The recommended alternative is <seealso cref="CookieBuilder.Name"/> on <see cref="Cookie"/>.
42
+
/// </para>
43
+
/// <para>
16
44
/// Determines the cookie name used to persist the session ID.
17
-
/// Defaults to <see cref="SessionDefaults.CookieName"/>.
[Obsolete("This property is obsolete and will be removed in a future version. The recommended alternative is "+nameof(Cookie)+"."+nameof(CookieBuilder.Name)+".")]
/// This property is obsolete and will be removed in a future version. The recommended alternative is <seealso cref="CookieBuilder.Domain"/> on <see cref="Cookie"/>.
53
+
/// </para>
54
+
/// <para>
22
55
/// Determines the domain used to create the cookie. Is not provided by default.
56
+
/// </para>
23
57
/// </summary>
24
-
publicstringCookieDomain{get;set;}
58
+
[Obsolete("This property is obsolete and will be removed in a future version. The recommended alternative is "+nameof(Cookie)+"."+nameof(CookieBuilder.Domain)+".")]
/// This property is obsolete and will be removed in a future version. The recommended alternative is <seealso cref="CookieBuilder.Path"/> on <see cref="Cookie"/>.
64
+
/// </para>
65
+
/// <para>
27
66
/// Determines the path used to create the cookie.
28
67
/// Defaults to <see cref="SessionDefaults.CookiePath"/>.
[Obsolete("This property is obsolete and will be removed in a future version. The recommended alternative is "+nameof(Cookie)+"."+nameof(CookieBuilder.Path)+".")]
/// This property is obsolete and will be removed in a future version. The recommended alternative is <seealso cref="CookieBuilder.HttpOnly"/> on <see cref="Cookie"/>.
76
+
/// </para>
77
+
/// <para>
33
78
/// Determines if the browser should allow the cookie to be accessed by client-side JavaScript. The
34
79
/// default is true, which means the cookie will only be passed to HTTP requests and is not made available
35
80
/// to script on the page.
81
+
/// </para>
36
82
/// </summary>
37
-
publicboolCookieHttpOnly{get;set;}=true;
83
+
[Obsolete("This property is obsolete and will be removed in a future version. The recommended alternative is "+nameof(Cookie)+"."+nameof(CookieBuilder.HttpOnly)+".")]
/// This property is obsolete and will be removed in a future version. The recommended alternative is <seealso cref="CookieBuilder.SameSite"/> on <see cref="Cookie"/>.
89
+
/// </para>
90
+
/// <para>
40
91
/// Determines if the browser should allow the cookie to be attached to same-site or cross-site requests. The
41
92
/// default is Lax, which means the cookie is allowed to be attached to same-site and safe cross-site requests.
[Obsolete("This property is obsolete and will be removed in a future version. The recommended alternative is "+nameof(Cookie)+"."+nameof(CookieBuilder.SameSite)+".")]
/// Determines if the cookie should only be transmitted on HTTPS requests.
99
+
/// <para>
100
+
/// This property is obsolete and will be removed in a future version. The recommended alternative is <seealso cref="CookieBuilder.SecurePolicy"/> on <see cref="Cookie"/>.
101
+
/// </para>
102
+
/// <para>
103
+
/// Determines if the cookie should only be transmitted on HTTPS requests.
[Obsolete("This property is obsolete and will be removed in a future version. The recommended alternative is "+nameof(Cookie)+"."+nameof(CookieBuilder.SecurePolicy)+".")]
0 commit comments