BACnet.Core.Network.Route.Route C# (CSharp) Method

Route() public method

Constructs a new Route instance
public Route ( ushort network, byte portId, Mac nextHop ) : System
network ushort The network number of the route
portId byte The port id of the next hop port
nextHop BACnet.Core.Datalink.Mac The next hop mac address, or a broadcast address for a local port
return System
        public Route(ushort network, byte portId, Mac nextHop)
        {
            this.Network = network;
            this.PortId = portId;
            this.NextHop = nextHop;
        }
Route