ConfigurableSurfaceProcedureConfigureEntry Method |
Given the list of connections, configure the previous connection as it enters this procedure.
Ensure that the connection is continuous in both position and heading. Note that the incoming
heading may have changed in between evaluations if other procedures are configuring the same
connection. The procedure is responsible for providing an entry arc which accounts for this change.
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 SurfaceConfigurationResult ConfigureEntry(
IList<ConfigurableConnection> connections,
int previousIndex
)
Public MustOverride Function ConfigureEntry (
connections As IList(Of ConfigurableConnection),
previousIndex As Integer
) As SurfaceConfigurationResult
public:
virtual SurfaceConfigurationResult^ ConfigureEntry(
IList<ConfigurableConnection^>^ connections,
int previousIndex
) abstract
abstract ConfigureEntry :
connections : IList<ConfigurableConnection> *
previousIndex : int -> SurfaceConfigurationResult
Parameters
- connections
- Type: System.Collections.GenericIListConfigurableConnection
The list of connections in the route. - previousIndex
- Type: SystemInt32
The index of the connection which comes before this procedure.
Return Value
Type:
SurfaceConfigurationResultReturns a result indicating whether the configuration was successful or whether there was
an error which either prevents configuration or forces a discontinuous result.
See Also