ConnectivityStates Enumeration |
Specifies types of network connectivity state.
Namespace:
Alphaleonis.Win32.Network
Assembly:
AlphaFS (in AlphaFS.dll) Version: 2.2
Syntax [FlagsAttribute]
public enum ConnectivityStates
<FlagsAttribute>
Public Enumeration ConnectivityStates
[FlagsAttribute]
public enum class ConnectivityStates
[<FlagsAttribute>]
type ConnectivityStates
Members
| Member name | Value | Description |
---|
| None | 0 | The underlying network interfaces have no connectivity to any network. |
| IPv4NoTraffic | 1 | There is connectivity to a network, but the service cannot detect any IPv4 Network Traffic. |
| IPv6NoTraffic | 2 | There is connectivity to a network, but the service cannot detect any IPv6 Network Traffic. |
| IPv4Subnet | 16 | There is connectivity to the local subnet using the IPv4 protocol. |
| IPv4LocalNetwork | 32 | There is connectivity to a routed network using the IPv4 protocol. |
| IPv4Internet | 64 | There is connectivity to the Internet using the IPv4 protocol. |
| IPv6Subnet | 256 | There is connectivity to the local subnet using the IPv6 protocol. |
| IPv6LocalNetwork | 512 | There is connectivity to a local network using the IPv6 protocol. |
| IPv6Internet | 1024 | There is connectivity to the Internet using the IPv6 protocol. |
See Also