forked from florentbr/SeleniumBasic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_Cookie.cs
More file actions
35 lines (24 loc) · 1.02 KB
/
_Cookie.cs
File metadata and controls
35 lines (24 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using System;
using System.ComponentModel;
using System.Runtime.InteropServices;
namespace Selenium.ComInterfaces {
#pragma warning disable 1591
[Guid("0277FC34-FD1B-4616-BB19-2276E80F5CF7")]
[ComVisible(true), InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
public interface _Cookie {
[DispId(30), Description("Gets the name of the cookie.")]
string Name { get; }
[DispId(32), Description("Gets the value of the cookie.")]
string Value { get; }
[DispId(34), Description("Gets the path of the cookie.")]
string Path { get; }
[DispId(36), Description("Gets the domain of the cookie.")]
string Domain { get; }
[DispId(38), Description("Gets a value indicating whether the cookie is secure.")]
bool Secure { get; }
[DispId(40), Description("Gets the expiration date of the cookie.")]
string Expiry { get; }
[DispId(245), Description("Deletes the specified cookie from the page.")]
void Delete();
}
}