32 lines
1.3 KiB
C#
32 lines
1.3 KiB
C#
using System;
|
|
|
|
namespace System.Net.NetworkInformation
|
|
{
|
|
/// <summary>Specifies the operational state of a network interface.</summary>
|
|
// Token: 0x020001A9 RID: 425
|
|
public enum OperationalStatus
|
|
{
|
|
/// <summary>The network interface is up; it can transmit data packets.</summary>
|
|
// Token: 0x04000CC8 RID: 3272
|
|
Up = 1,
|
|
/// <summary>The network interface is unable to transmit data packets.</summary>
|
|
// Token: 0x04000CC9 RID: 3273
|
|
Down,
|
|
/// <summary>The network interface is running tests.</summary>
|
|
// Token: 0x04000CCA RID: 3274
|
|
Testing,
|
|
/// <summary>The network interface status is not known.</summary>
|
|
// Token: 0x04000CCB RID: 3275
|
|
Unknown,
|
|
/// <summary>The network interface is not in a condition to transmit data packets; it is waiting for an external event.</summary>
|
|
// Token: 0x04000CCC RID: 3276
|
|
Dormant,
|
|
/// <summary>The network interface is unable to transmit data packets because of a missing component, typically a hardware component.</summary>
|
|
// Token: 0x04000CCD RID: 3277
|
|
NotPresent,
|
|
/// <summary>The network interface is unable to transmit data packets because it runs on top of one or more other interfaces, and at least one of these "lower layer" interfaces is down.</summary>
|
|
// Token: 0x04000CCE RID: 3278
|
|
LowerLayerDown
|
|
}
|
|
}
|