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 Dec 13, 2018. It is now read-only.
/// to the client. This can be used to mitigate potential problems with very large identities.
155
140
/// </summary>
156
141
publicITicketStoreSessionStore{get;set;}
142
+
143
+
#region Obsolete API
144
+
/// <summary>
145
+
/// <para>
146
+
/// This property is obsolete and will be removed in a future version. The recommended alternative is <seealso cref="CookieBuilder.Name"/> on <see cref="Cookie"/>.
147
+
/// </para>
148
+
/// <para>
149
+
/// Determines the cookie name used to persist the identity. The default value is ".AspNetCore.Cookies".
150
+
/// This value should be changed if you change the name of the AuthenticationScheme, especially if your
151
+
/// system uses the cookie authentication handler multiple times.
152
+
/// </para>
153
+
/// </summary>
154
+
[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.Domain"/> on <see cref="Cookie"/>.
160
+
/// </para>
161
+
/// <para>
162
+
/// Determines the domain used to create the cookie. Is not provided by default.
163
+
/// </para>
164
+
/// </summary>
165
+
[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"/>.
171
+
/// </para>
172
+
/// <para>
173
+
/// Determines the path used to create the cookie. The default value is "/" for highest browser compatibility.
174
+
/// </para>
175
+
/// </summary>
176
+
[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"/>.
182
+
/// </para>
183
+
/// <para>
184
+
/// Determines if the browser should allow the cookie to be accessed by client-side javascript. The
185
+
/// default is true, which means the cookie will only be passed to http requests and is not made available
186
+
/// to script on the page.
187
+
/// </para>
188
+
/// </summary>
189
+
[Obsolete("This property is obsolete and will be removed in a future version. The recommended alternative is "+nameof(Cookie)+"."+nameof(CookieBuilder.SameSite)+".")]
/// This property is obsolete and will be removed in a future version. The recommended alternative is <seealso cref="CookieBuilder.SecurePolicy"/> on <see cref="Cookie"/>.
195
+
/// </para>
196
+
/// <para>
197
+
/// Determines if the cookie should only be transmitted on HTTPS request. The default is to limit the cookie
198
+
/// to HTTPS requests if the page which is doing the SignIn is also HTTPS. If you have an HTTPS sign in page
199
+
/// and portions of your site are HTTP you may need to change this value.
200
+
/// </para>
201
+
/// </summary>
202
+
[Obsolete("This property is obsolete and will be removed in a future version. The recommended alternative is "+nameof(Cookie)+"."+nameof(CookieBuilder.SecurePolicy)+".")]
/// This property is obsolete and will be removed in a future version. The recommended alternative is <seealso cref="CookieBuilder.Expiration"/> on <see cref="Cookie"/>.
208
+
/// </para>
209
+
/// <para>
210
+
/// Controls how much time the cookie will remain valid from the point it is created. The expiration
211
+
/// information is in the protected cookie ticket. Because of that an expired cookie will be ignored
212
+
/// even if it is passed to the server after the browser should have purged it
213
+
/// </para>
214
+
/// </summary>
215
+
[Obsolete("This property is obsolete and will be removed in a future version. The recommended alternative is "+nameof(Cookie)+"."+nameof(CookieBuilder.Expiration)+".")]
0 commit comments