BACnet.Explorer.Core.Models.PortType.All C# (CSharp) Method

All() public static method

public static All ( ) : BACnet.Explorer.Core.Models.PortType[]
return BACnet.Explorer.Core.Models.PortType[]
        public static PortType[] All()
        {
            return new PortType[]
            {
                new PortType()
                {
                    Name = "Foreign Device Port",
                    Type = typeof(ForeignDevicePortProcess)
                },
                new PortType()
                {
                    Name = "Ethernet Port",
                    Type = typeof(EthernetPortProcess)
                }
            };
        }
PortType