System.Net.NetworkInformation.NetworkInterfacePal.GetAllNetworkInterfaces C# (CSharp) Method

GetAllNetworkInterfaces() public static method

public static GetAllNetworkInterfaces ( ) : System.Net.NetworkInformation.NetworkInterface[]
return System.Net.NetworkInformation.NetworkInterface[]
        public static NetworkInterface[] GetAllNetworkInterfaces()
        {
            throw new PlatformNotSupportedException();
        }

Usage Example

Esempio n. 1
0
 public static NetworkInterface[] GetAllNetworkInterfaces()
 {
     return(NetworkInterfacePal.GetAllNetworkInterfaces());
 }