17 lines
435 B
C#
17 lines
435 B
C#
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
|
|
}
|
|
}
|