This document is archived and information here might be outdated.  Recommended version.


INATraversalResult.Create Method (ArcObjects .NET 10.5 SDK)
ArcObjects Library Reference (NetworkAnalyst)  

INATraversalResult.Create Method

Makes a new traversal result.

[Visual Basic .NET]
Public Sub Create ( _
    ByVal junctionFields As IFields, _
    ByVal edgeFields As IFields, _
    ByVal simpleTurnFields As IFields, _
    ByVal hasMs As Boolean _
)
[C#]
public void Create (
    IFields junctionFields,
    IFields edgeFields,
    IFields simpleTurnFields,
    bool hasMs
);
[C++]
HRESULT Create(
  IFields* junctionFields,
  IFields* edgeFields,
  IFields* simpleTurnFields,
  VARIANT_BOOL hasMs
);
[C++]

Parameters junctionFields [in]
junctionFields is a parameter of type IFields edgeFields [in]
edgeFields is a parameter of type IFields simpleTurnFields [in]
simpleTurnFields is a parameter of type IFields hasMs [in] hasMs is a parameter of type VARIANT_BOOL

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires Network Analyst Extension.

Remarks

The Create method is used by people writing custom solvers to allow them to setup the 3 feature classes of the traversal result corresponding to edges, junctions, and turns.

See Also

INATraversalResult Interface