Share via


CommonServiceSoap.CustomerInfoHeaderValue Property

CommonServiceSoap.CustomerInfoHeaderValue Property

A customer-defined code (CustomerInfoHeader object) that represents the transaction being sent to MapPoint Web Service by using the CommonServiceSoap methods.


Public CustomerInfoHeaderValue As
 CustomerInfoHeader



[C#]

public CustomerInfoHeader
 CustomerInfoHeaderValue;

Remarks

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

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

    For more information, see the CSS Help topic "About MapPoint Web Service reports." For information about how to access the CSS, see the information that you received when you enrolled in the service.

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

Example

[Visual Basic]

'Instantiate the service variable
Dim commonService As New CommonServiceSoap()

' Set the CustomLogEntry field to differentiate from other 
' logs in the reporting logs
Dim myCustomerInfoHeader As New CustomerInfoHeader()
myCustomerInfoHeader.CustomLogEntry = 30
commonService.CustomerInfoHeaderValue = myCustomerInfoHeader



[C#]

//Instantiate the service variable
CommonServiceSoap commonService = new CommonServiceSoap(); 

// Set the CustomLogEntry field to differentiate from other 
// logs in the reporting logs
CustomerInfoHeader myCustomerInfoHeader = new CustomerInfoHeader();
myCustomerInfoHeader.CustomLogEntry = 30;
commonService.CustomerInfoHeaderValue = myCustomerInfoHeader;


See Also

  CommonServiceSoap Class   |   CustomerInfoHeader Class