So it sounds like you can solve the route but need to analyze the results more.
One way can be to spatially select all the roads that overlap your route and then summarize them and the other can be to add the "traversal" results being stored in memory as a feature class to ArcMap and summarize them. The traversal results has every edge of the route with its network attributes. You can use the following link to see how to access the traversal result:
http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#//000100000245000000
Jay Sandhu
So it sounds like you can solve the route but need to analyze the results more.
One way can be to spatially select all the roads that overlap your route and then summarize them and the other can be to add the "traversal" results being stored in memory as a feature class to ArcMap and summarize them. The traversal results has every edge of the route with its network attributes. You can use the following link to see how to access the traversal result:
http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#//000100000245000000
Jay Sandhu
Public Sub AddNATraversalResultToArcMap()
Dim pMxDoc As IMxDocument
Dim pNetworkAnalystExtension As INetworkAnalystExtension
Dim pNALayer As INALayer
Dim pFLayer As IFeatureLayer
Dim pTraversalResultQuery As INATraversalResultQuery
Dim pNATraversalResultEdit As INATraversalResultEdit
Set pMxDoc = ThisDocument
Set pNetworkAnalystExtension = Application.FindExtensionByName("Network Analyst")
Set pNALayer = pNetworkAnalystExtension.NAWindow.ActiveAnalysis
Set pTraversalResultQuery = pNALayer.Context.Result
Set pNATraversalResultEdit = pTraversalResultQuery
'Infer Geometry
pNATraversalResultEdit.InferGeometry "", Nothing, New CancelTracker
'Get the Edges and add as a layer
Set pFLayer = New FeatureLayer
Set pFLayer.FeatureClass = pTraversalResultQuery.FeatureClass(esriNETEdge)
pFLayer.Name = pFLayer.FeatureClass.AliasName
pMxDoc.FocusMap.AddLayer pFLayer
'Get the Junctions and add as a layer
Set pFLayer = New FeatureLayer
Set pFLayer.FeatureClass = pTraversalResultQuery.FeatureClass(esriNETJunction)
pFLayer.Name = pFLayer.FeatureClass.AliasName
pMxDoc.FocusMap.AddLayer pFLayer
End Sub