public OsxIPv6InterfaceProperties(OsxNetworkInterface oni, int mtu)
     : base(oni)
 {
     _mtu = mtu;
 }
Ejemplo n.º 2
0
 public OsxIPv4InterfaceProperties(OsxNetworkInterface oni, int mtu)
     : base(oni)
 {
     _mtu = mtu;
 }
Ejemplo n.º 3
0
 /// Returns objects that describe the network interfaces on the local computer.
 public static NetworkInterface[] GetAllNetworkInterfaces()
 {
     return(OsxNetworkInterface.GetOsxNetworkInterfaces());
 }