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

GetRoute() public method

Gets the route to a network
public GetRoute ( ushort network ) : Route
network ushort The network to get the route to
return Route
        public Route GetRoute(ushort network)
        {
            int index = _findRoute(network);
            return index == -1 ? null : _routes[index];
        }