OperationalStatus Enumeration
.NET Framework 2.0
Note: This enumeration is new in the .NET Framework version 2.0.
Specifies the operational state of a network interface.
Namespace: System.Net.NetworkInformation
Assembly: System (in system.dll)
Assembly: System (in system.dll)
| Member name | Description | |
|---|---|---|
| Dormant | The network interface is not in a condition to transmit data packets; it is waiting for an external event. | |
| Down | The network interface is unable to transmit data packets. | |
| LowerLayerDown | 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. | |
| NotPresent | The network interface is unable to transmit data packets because of a missing component, typically a hardware component. | |
| Testing | The network interface is running tests. | |
| Unknown | The network interface status is not known. | |
| Up | The network interface is up; it can transmit data packets. |
This enumeration defines valid values for the OperationalStatus property.
The following code example displays a summary for all interfaces on the local computer.
public static void ShowInterfaceSummary() { NetworkInterface[] interfaces = NetworkInterface.GetAllNetworkInterfaces(); foreach (NetworkInterface adapter in interfaces) { Console.WriteLine ("Name: {0}", adapter.Name); Console.WriteLine(adapter.Description); Console.WriteLine(String.Empty.PadLeft(adapter.Description.Length,'=')); Console.WriteLine(" Interface type .......................... : {0}", adapter.NetworkInterfaceType); Console.WriteLine(" Operational status ...................... : {0}", adapter.OperationalStatus); string versions =""; // Create a display string for the supported IP versions. if (adapter.Supports(NetworkInterfaceComponent.IPv4)) { versions = "IPv4"; } if (adapter.Supports(NetworkInterfaceComponent.IPv6)) { if (versions.Length > 0) { versions += " "; } versions += "IPv6"; } Console.WriteLine(" IP version .............................. : {0}", versions); Console.WriteLine(); } Console.WriteLine(); }
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: