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,16 @@
using System;
namespace System.Net.NetworkInformation
{
/// <summary>Specifies the Internet Protocol versions that are supported by a network interface.</summary>
// Token: 0x020001A7 RID: 423
public enum NetworkInterfaceComponent
{
/// <summary>Internet Protocol version 4.</summary>
// Token: 0x04000CAB RID: 3243
IPv4,
/// <summary>Internet Protocol version 6.</summary>
// Token: 0x04000CAC RID: 3244
IPv6
}
}