Share via


RouteServiceSoap.CustomerInfoRouteHeaderValue Property

RouteServiceSoap.CustomerInfoRouteHeaderValue Property

The customer-defined code (CustomerInfoRouteHeader object) that represents the transaction being sent to MapPoint Web Service using the RouteServiceSoap methods.


Public CustomerInfoRouteHeaderValue _
    As CustomerInfoRouteHeader


[C#]

public CustomerInfoRouteHeader 
    CustomerInfoRouteHeaderValue;

Remarks

  • You can use the CustomerInfoRouteHeaderValue property in the SOAP header for every route service call that you want to track in a particular way, such as tracking calls for particular end customers or for calls of a certain type.

  • Transactions with a CustomerInfoRouteHeaderValue property are tracked on reports that are accessible from the MapPoint Web Service Customer Services site.

  • For information about the reporting available with MapPoint Web Service, see the Help topic About MapPoint Web Service reports on the MapPoint Web Service Customer Services site (https://mappoint-css.live.com/CSCV3/). For information about how to access the site, read the customer information that you received when you enrolled in the service.

  • For information about becoming a customer, visit the MapPoint Web Service Web site (https://www.microsoft.com/mappoint/webservice).

Example

[Visual Basic]

'Set the CustomLogEntry field to differentiate from other 
'logs in the reporting logs
Dim routeService As New RouteServiceSoap()
Dim myCustomerInfoRouteHeader As New CustomerInfoRouteHeader()
myCustomerInfoRouteHeader.CustomLogEntry = 30
routeService.CustomerInfoRouteHeaderValue = myCustomerInfoRouteHeader



[C#]

//Set the CustomLogEntry field to differentiate from other 
//logs in the reporting logs
RouteServiceSoap routeService = new RouteServiceSoap();
CustomerInfoRouteHeader myCustomerInfoRouteHeader = new CustomerInfoRouteHeader();
myCustomerInfoRouteHeader.CustomLogEntry = 30;
routeService.CustomerInfoRouteHeaderValue = myCustomerInfoRouteHeader;


See Also

  RouteServiceSoap Class   |   CustomerInfoRouteHeader Class