FindServiceSoap.CustomerInfoFindHeaderValue Property

FindServiceSoap.CustomerInfoFindHeaderValue Property

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


Public CustomerInfoFindHeaderValue As  CustomerInfoFindHeader


[C#]

public CustomerInfoFindHeader CustomerInfoFindHeaderValue;

Remarks

  • You can use the CustomerInfoFindHeaderValue property in the SOAP header for every find 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 CustomerInfoFindHeaderValue property are tracked on reports that are accessible from 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.

  • See the Help topic About MapPoint Web Service reports on the MapPoint Web Service Customer Services site for information about the reports available with MapPoint Web Service.

  • For information about becoming a customer, visit the MapPoint Web Service Web site.

Example

[Visual Basic]

'Set the CustomLogEntry field to differentiate from other 
'logs in the reporting logs
Dim findService As New FindServiceSoap()
Dim myCustomerInfoFindHeader As New CustomerInfoFindHeader()
myCustomerInfoFindHeader.CustomLogEntry = 30
findService.CustomerInfoFindHeaderValue = myCustomerInfoFindHeader



[C#]

//Set the CustomLogEntry field to differentiate from other 
//logs in the reporting logs
FindServiceSoap findService = new FindServiceSoap();
CustomerInfoFindHeader myCustomerInfoFindHeader = new CustomerInfoFindHeader();
myCustomerInfoFindHeader.CustomLogEntry = 30;
findService.CustomerInfoFindHeaderValue = myCustomerInfoFindHeader;


See Also

  FindServiceSoap Class   |   CustomerInfoFindHeader Class