BACnet.Core.Network.RoutingTable.GetRouteByPortId C# (CSharp) Method

GetRouteByPortId() public method

Gets the local route to a directly attached network
public GetRouteByPortId ( byte portId ) : Route
portId byte The port id of the port
return Route
        public Route GetRouteByPortId(byte portId)
        {
            int index = _findRouteByPortId(portId);
            return index == -1 ? null : _routes[index];
        }