RouteConnectionCreateConnection Method  | 
  
    Namespace: 
   AGI.Foundation.RouteDesign
    Assembly:
   AGI.Foundation.RouteDesign (in AGI.Foundation.RouteDesign.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic abstract ConfigurableConnection CreateConnection(
	ConfigurableSurfaceProcedure previousPath,
	ConfigurableSurfaceProcedure nextPath,
	RouteProcedure previousProcedure,
	RouteProcedure nextProcedure
)
Public MustOverride Function CreateConnection ( 
	previousPath As ConfigurableSurfaceProcedure,
	nextPath As ConfigurableSurfaceProcedure,
	previousProcedure As RouteProcedure,
	nextProcedure As RouteProcedure
) As ConfigurableConnection
public:
virtual ConfigurableConnection^ CreateConnection(
	ConfigurableSurfaceProcedure^ previousPath, 
	ConfigurableSurfaceProcedure^ nextPath, 
	RouteProcedure^ previousProcedure, 
	RouteProcedure^ nextProcedure
) abstract
abstract CreateConnection : 
        previousPath : ConfigurableSurfaceProcedure * 
        nextPath : ConfigurableSurfaceProcedure * 
        previousProcedure : RouteProcedure * 
        nextProcedure : RouteProcedure -> ConfigurableConnection 
Parameters
- previousPath
 - Type: AGI.Foundation.RouteDesign.AdvancedConfigurableSurfaceProcedure
The previous procedure's configurable path. - nextPath
 - Type: AGI.Foundation.RouteDesign.AdvancedConfigurableSurfaceProcedure
The next procedure's configurable path.  - previousProcedure
 - Type: AGI.Foundation.RouteDesignRouteProcedure
The previous procedure. - nextProcedure
 - Type: AGI.Foundation.RouteDesignRouteProcedure
The next procedure. 
Return Value
Type: 
ConfigurableConnectionThe connection between the previous and next procedures.
See Also