using System; namespace Open.Nat { /// /// Protocol that should be used for searching a NAT device. /// [Flags] public enum PortMapper { /// /// Use only Port Mapping Protocol /// Pmp = 1, /// /// Use only Universal Plug and Play /// Upnp = 2 } }