-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathWhoIsIpv4ServiceEnum.cs
More file actions
45 lines (39 loc) · 836 Bytes
/
WhoIsIpv4ServiceEnum.cs
File metadata and controls
45 lines (39 loc) · 836 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
using System;
namespace Waher.Networking.WHOIS
{
/// <summary>
/// Enumeration of WHOIS Services available for IPv4 addresses.
/// </summary>
public enum WhoIsIpv4ServiceEnum
{
/// <summary>
/// APNIC
/// RDAP: https://rdap.apnic.net/
/// </summary>
whois_apnic_net = 0,
/// <summary>
/// RIPE NCC
/// RDAP: https://rdap.db.ripe.net/
/// </summary>
whois_ripe_net = 1,
/// <summary>
/// Administered by ARIN
/// RDAP: https://rdap.arin.net/registry
/// </summary>
whois_arin_net = 2,
/// <summary>
/// AFRINIC
/// RDAP: https://rdap.afrinic.net/rdap/
/// </summary>
whois_afrinic_net = 3,
/// <summary>
/// LACNIC
/// RDAP: https://rdap.lacnic.net/rdap/
/// </summary>
whois_lacnic_net = 4,
/// <summary>
/// WHOIS Service undefined.
/// </summary>
undefined
}
}