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