using System; namespace System.Net.NetworkInformation { /// Specifies the operational state of a network interface. // Token: 0x020001A9 RID: 425 public enum OperationalStatus { /// The network interface is up; it can transmit data packets. // Token: 0x04000CC8 RID: 3272 Up = 1, /// The network interface is unable to transmit data packets. // Token: 0x04000CC9 RID: 3273 Down, /// The network interface is running tests. // Token: 0x04000CCA RID: 3274 Testing, /// The network interface status is not known. // Token: 0x04000CCB RID: 3275 Unknown, /// The network interface is not in a condition to transmit data packets; it is waiting for an external event. // Token: 0x04000CCC RID: 3276 Dormant, /// The network interface is unable to transmit data packets because of a missing component, typically a hardware component. // Token: 0x04000CCD RID: 3277 NotPresent, /// 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. // Token: 0x04000CCE RID: 3278 LowerLayerDown } }