forked from florentbr/SeleniumBasic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_Cookies.cs
More file actions
23 lines (16 loc) · 664 Bytes
/
_Cookies.cs
File metadata and controls
23 lines (16 loc) · 664 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.ComponentModel;
using System.Runtime.InteropServices;
namespace Selenium.ComInterfaces {
#pragma warning disable 1591
[Guid("0277FC34-FD1B-4616-BB19-E6E7ED329824")]
[ComVisible(true), InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
public interface _Cookies : System.Collections.IEnumerable {
[DispId(0), Description("Get an item for a name or index (One-based)")]
Cookie this[object identifier] { get; }
[DispId(128), Description("Number of items")]
int Count { get; }
[DispId(-4)]
System.Collections.IEnumerator _NewEnum(); //Has to be declared last
}
}