Files
Dec2017-Script-Dump/System/UriHostNameType.cs
T
2026-06-04 11:42:34 +02:00

27 lines
888 B
C#

using System;
namespace System
{
/// <summary>Defines host name types for the <see cref="M:System.Uri.CheckHostName(System.String)" /> method.</summary>
/// <filterpriority>2</filterpriority>
// Token: 0x02000301 RID: 769
public enum UriHostNameType
{
/// <summary>The type of the host name is not supplied.</summary>
// Token: 0x04001630 RID: 5680
Unknown,
/// <summary>The host is set, but the type cannot be determined.</summary>
// Token: 0x04001631 RID: 5681
Basic,
/// <summary>The host name is a domain name system (DNS) style host name.</summary>
// Token: 0x04001632 RID: 5682
Dns,
/// <summary>The host name is an Internet Protocol (IP) version 4 host address.</summary>
// Token: 0x04001633 RID: 5683
IPv4,
/// <summary>The host name is an Internet Protocol (IP) version 6 host address.</summary>
// Token: 0x04001634 RID: 5684
IPv6
}
}