RenderServiceSoap.CustomerInfoRenderHeaderValue Property

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

Public Dim CustomerInfoRenderHeaderValue As
  [Namespace].CustomerInfoRenderHeader
    Member of [Namespace].RenderServiceSoap
[C#]
public [Namespace].CustomerInfoRenderHeader
  CustomerInfoRenderHeaderValue
    Member of [Namespace].RenderServiceSoap

Remarks

  • You can use the CustomerInfoRenderHeaderValue property in the SOAP header for every render 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 CustomerInfoRenderHeaderValue property are tracked on reports that are accessible from the MapPoint Web Service Customer Services Web site.
  • See the Help topic About MapPoint Web Service reports on the MapPoint Web Service Customer Services Web site (https://mappoint-css.partners.extranet.microsoft.com/cscv3/) for information about the reporting available with MapPoint Web Service. For information on how to access the site, read the customer information that you received when you enrolled in the service.

Example

 
[Visual Basic] 
'This example assumes that the MapPoint Web Service 
'namespace has been imported 

'Set the CustomLogEntry field to differentiate from other 
'logs in the reporting logs
Dim renderService As New RenderServiceSoap()
Dim myCustomerInfoRenderHeader As New CustomerInfoRenderHeader()
myCustomerInfoRenderHeader.CustomLogEntry = 30
renderService.CustomerInfoRenderHeaderValue = myCustomerInfoRenderHeader

 
[C#]
//This example assumes that the MapPoint Web Service 
//namespace has been imported 

//Set the CustomLogEntry field to differentiate from other 
//logs in the reporting logs
RenderServiceSoap renderService = new RenderServiceSoap();
CustomerInfoRenderHeader myCustomerInfoRenderHeader = new CustomerInfoRenderHeader();
myCustomerInfoRenderHeader.CustomLogEntry = 30;
renderService.CustomerInfoRenderHeaderValue = myCustomerInfoRenderHeader;

 

See Also

RenderServiceSoap Class | CustomerInfoRenderHeader Class