This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,28 @@
using System;
namespace System.Net.NetworkInformation
{
/// <summary>Specifies how an IP address host suffix was located.</summary>
// Token: 0x020001B4 RID: 436
public enum SuffixOrigin
{
/// <summary>The suffix was located using an unspecified source.</summary>
// Token: 0x04000CF2 RID: 3314
Other,
/// <summary>The suffix was manually configured.</summary>
// Token: 0x04000CF3 RID: 3315
Manual,
/// <summary>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.</summary>
// Token: 0x04000CF4 RID: 3316
WellKnown,
/// <summary>The suffix was supplied by a Dynamic Host Configuration Protocol (DHCP) server.</summary>
// Token: 0x04000CF5 RID: 3317
OriginDhcp,
/// <summary>The suffix is a link-local suffix.</summary>
// Token: 0x04000CF6 RID: 3318
LinkLayerAddress,
/// <summary>The suffix was randomly assigned.</summary>
// Token: 0x04000CF7 RID: 3319
Random
}
}