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
/// The URL to associate the cookie with. The callback will be rejected if the URL is invalid.
10
+
/// </summary>
11
+
publicstringUrl{get;set;}
12
+
13
+
/// <summary>
14
+
/// (optional) - The name of the cookie. Empty by default if omitted.
15
+
/// </summary>
16
+
[DefaultValue("")]
17
+
publicstringName{get;set;}
18
+
19
+
/// <summary>
20
+
/// (optional) - The value of the cookie. Empty by default if omitted.
21
+
/// </summary>
22
+
[DefaultValue("")]
23
+
publicstringValue{get;set;}
24
+
25
+
/// <summary>
26
+
/// (optional) - The domain of the cookie; this will be normalized with a preceding dot so that it's also valid for subdomains. Empty by default if omitted.
27
+
/// </summary>
28
+
[DefaultValue("")]
29
+
publicstringDomain{get;set;}
30
+
31
+
/// <summary>
32
+
/// (optional) - The path of the cookie. Empty by default if omitted.
33
+
/// </summary>
34
+
[DefaultValue("")]
35
+
publicstringPath{get;set;}
36
+
37
+
/// <summary>
38
+
/// (optional) - Whether the cookie is marked as secure. Defaults to false.
39
+
/// </summary>
40
+
[DefaultValue(false)]
41
+
publicboolSecure{get;set;}
42
+
43
+
/// <summary>
44
+
/// (optional) - Whether the cookie is marked as HTTP only. Defaults to false.
45
+
/// </summary>
46
+
[DefaultValue(false)]
47
+
publicboolHttpOnly{get;set;}
48
+
49
+
/// <summary>
50
+
/// (optional) - The expiration date of the cookie as the number of seconds since the UNIX epoch.
51
+
/// If omitted then the cookie becomes a session cookie and will not be retained between sessions.
0 commit comments