BACnet.Core.Network.RoutingTable.AddLocalRoute C# (CSharp) Метод

AddLocalRoute() публичный Метод

Adds a new local route to the routing table
public AddLocalRoute ( ushort network, byte portId ) : Route
network ushort The network number of the route
portId byte The port id of the route
Результат Route
        public Route AddLocalRoute(ushort network, byte portId)
        {
            int index = _findRoute(network);
            return _upsertRoute(index, new Route(network, portId, Mac.Broadcast));
        }