CustomerInfoHeader.CustomLogEntry Property
CustomerInfoHeader.CustomLogEntry Property
A customer-defined numeric code that is associated with a particular transaction. You can track up to 32 transactions. Valid values range from 0 through 31.
Public CustomLogEntry As System.Short
[C#]
public System.Int16 CustomLogEntry;
Remarks
- Because the value of the CustomLogEntry property is just a number that is passed to MapPoint Web Service, you must keep a record of the relationship between the number and the transaction that you are tracking through the use of this property.
Example
[Visual Basic]
' 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#]
// Set the CustomLogEntry field to differentiate from other
// logs in the reporting logs
CustomerInfoHeader myCustomerInfoHeader = new CustomerInfoHeader();
myCustomerInfoHeader.CustomLogEntry = 30;
commonService.CustomerInfoHeaderValue = myCustomerInfoHeader;