using System;
namespace System.Net.NetworkInformation
{
/// Specifies how an IP address host suffix was located.
// Token: 0x020001B4 RID: 436
public enum SuffixOrigin
{
/// The suffix was located using an unspecified source.
// Token: 0x04000CF2 RID: 3314
Other,
/// The suffix was manually configured.
// Token: 0x04000CF3 RID: 3315
Manual,
/// The suffix is a well-known suffix. Well-known suffixes are specified in standard-track Request for Comments (RFC) documents and assigned by the Internet Assigned Numbers Authority (Iana) or an address registry. Such suffixes are reserved for special purposes.
// Token: 0x04000CF4 RID: 3316
WellKnown,
/// The suffix was supplied by a Dynamic Host Configuration Protocol (DHCP) server.
// Token: 0x04000CF5 RID: 3317
OriginDhcp,
/// The suffix is a link-local suffix.
// Token: 0x04000CF6 RID: 3318
LinkLayerAddress,
/// The suffix was randomly assigned.
// Token: 0x04000CF7 RID: 3319
Random
}
}