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
/// this cookie will be sent to all pages on the Domain.
469
471
StringPath { get; };
470
472
471
-
/// The expiration date and time for the cookie as the number of seconds since the UNIX epoch.
472
-
/// The default is -1.0, which means cookies are session cookies by default.
473
+
/// The expiration date and time for the cookie.
474
+
/// For .NET API, setting the Expires property to <seecref="System.DateTime.MinValue"/> makes this a session cookie, which is its default value.
475
+
/// For WinRT API, setting the Expires property to <c>null</c> makes this a Cookie that is only good for the current HTTP session and will not be persisted.
0 commit comments