-
-
Notifications
You must be signed in to change notification settings - Fork 746
Expand file tree
/
Copy pathScheme.cs
More file actions
29 lines (26 loc) · 635 Bytes
/
Scheme.cs
File metadata and controls
29 lines (26 loc) · 635 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
29
namespace ElectronNET.API.Entities
{
/// <summary>
/// Authentication scheme names used by webContents 'login' authInfo.scheme.
/// </summary>
/// <yremarks>Undecidable from MCP: no typed enum is defined in docs; kept as project enum to reflect commonly observed values.</yremarks>
public enum Scheme
{
/// <summary>
///
/// </summary>
basic,
/// <summary>
///
/// </summary>
digest,
/// <summary>
///
/// </summary>
ntlm,
/// <summary>
///
/// </summary>
negotiate
}
}