ConfigurableConnectionConfigure Method |
Configure this connection based on its index in the given list of all connections in the route.
Namespace:
AGI.Foundation.RouteDesign.Advanced
Assembly:
AGI.Foundation.RouteDesign (in AGI.Foundation.RouteDesign.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public abstract void Configure(
IList<ConfigurableConnection> connections,
int currentIndex
)
Public MustOverride Sub Configure (
connections As IList(Of ConfigurableConnection),
currentIndex As Integer
)
public:
virtual void Configure(
IList<ConfigurableConnection^>^ connections,
int currentIndex
) abstract
abstract Configure :
connections : IList<ConfigurableConnection> *
currentIndex : int -> unit
Parameters
- connections
- Type: System.Collections.GenericIListConfigurableConnection
The list of all connections in the route. - currentIndex
- Type: SystemInt32
The index where this connection occurs in the list of connections.
See Also