This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
using System;
using Cpp2IlInjected;
namespace System
{
/// <summary>Defines host name types for the <see cref="M:System.Uri.CheckHostName(System.String)" /> method.</summary>
// Token: 0x02000087 RID: 135
[Token(Token = "0x2000087")]
public enum UriHostNameType
{
/// <summary>The type of the host name is not supplied.</summary>
// Token: 0x040001F4 RID: 500
[Token(Token = "0x40001F4")]
Unknown,
/// <summary>The host is set, but the type cannot be determined.</summary>
// Token: 0x040001F5 RID: 501
[Token(Token = "0x40001F5")]
Basic,
/// <summary>The host name is a domain name system (DNS) style host name.</summary>
// Token: 0x040001F6 RID: 502
[Token(Token = "0x40001F6")]
Dns,
/// <summary>The host name is an Internet Protocol (IP) version 4 host address.</summary>
// Token: 0x040001F7 RID: 503
[Token(Token = "0x40001F7")]
IPv4,
/// <summary>The host name is an Internet Protocol (IP) version 6 host address.</summary>
// Token: 0x040001F8 RID: 504
[Token(Token = "0x40001F8")]
IPv6
}
}