forked from florentbr/SeleniumBasic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_Storage.cs
More file actions
28 lines (21 loc) · 848 Bytes
/
_Storage.cs
File metadata and controls
28 lines (21 loc) · 848 Bytes
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
using Selenium;
using System;
using System.ComponentModel;
using System.Runtime.InteropServices;
namespace Selenium.ComInterfaces {
#pragma warning disable 1591
[Guid("0277FC34-FD1B-4616-BB19-C6F450B6EE52")]
[ComVisible(true), InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
public interface _Storage {
[DispId(0), Description("Get or set the storage item for the given key.")]
string this[string key] { get; set; }
[DispId(128), Description("Get the number of items in the storage.")]
int Count();
[DispId(705), Description("Get all keys of the storage.")]
List Keys();
[DispId(709), Description("Clear the storage.")]
void Clear();
[DispId(713), Description("Remove the storage item for the given key.")]
void Remove(string key);
}
}