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


INAStreetDirectionsContainer Interface (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > NetworkAnalyst > ESRI.ArcGIS.NetworkAnalyst > Interfaces > IN > INAStreetDirectionsContainer Interface
ArcGIS Developer Help

INAStreetDirectionsContainer Interface

Provides access to a container for driving directions.

Product Availability

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

Members

Name Description
Read-only property Directions The route directions by index.
Read-only property DirectionsCount The number of routes for the generated directions.
Method SaveAsXML Saves the directions to a file in XML format.

Classes that implement INAStreetDirectionsContainer

Classes Description

Remarks

The INAStreetDirectionsContainer interface provides access to the directions contents and a method to save the contents in a file in XML format.

[C#]

For example:

INAStreetDirectionsAgent streetAgent = naContext.Agents.get_ItemByName("StreetDirectionsAgent") as INAStreetDirectionsAgent;
INAStreetDirectionsContainer directionsContainer = streetAgent.DirectionsContainer;
directionsContainer.SaveAsXML(@"c:\mydirections.xml");
[Visual Basic .NET]

For example:

Dim streetAgent As INAStreetDirectionsAgent = naContext.Agents.ItemByName("StreetDirectionsAgent")
Dim directionsContainer As INAStreetDirectionsContainer = streetAgent.DirectionsContainer
directionsContainer.SaveAsXML("c:\mydirections.xml")