This document is archived and information here might be outdated. Recommended version. |
ArcObjects Help for .NET developers > ArcObjects namespaces > NetworkAnalyst > ESRI.ArcGIS.NetworkAnalyst > Interfaces > IN > INAStreetDirectionsContainer Interface (ArcObjects .NET 10.5 SDK) |
Provides access to a container for driving directions.
Description | ||
---|---|---|
Directions | The route directions by index. | |
DirectionsCount | The number of routes for the generated directions. | |
SaveAsXML | Saves the directions to a file in XML format. |
The INAStreetDirectionsContainer interface provides access to the directions contents and a method to save the contents in a file in XML format.
For example:
INAStreetDirectionsAgent streetAgent=naContext.Agents.get_ItemByName("StreetDirectionsAgent") as INAStreetDirectionsAgent;
INAStreetDirectionsContainer directionsContainer=streetAgent.DirectionsContainer;
directionsContainer.SaveAsXML(@"c:\mydirections.xml");
For example:
Dim streetAgent As INAStreetDirectionsAgent=naContext.Agents.ItemByName("StreetDirectionsAgent")
Dim directionsContainer As INAStreetDirectionsContainer=streetAgent.DirectionsContainer
directionsContainer.SaveAsXML("c:\mydirections.xml")