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