Share via


RenderServiceSoap.CustomerInfoRenderHeaderValue Property

RenderServiceSoap.CustomerInfoRenderHeaderValue Property

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


Public CustomerInfoRenderHeaderValue As
CustomerInfoRenderHeader



[C#]

public CustomerInfoRenderHeader CustomerInfoRenderHeaderValue;

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.

Example

[Visual Basic]

'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#]

//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