Share via


CustomerInfoHeader.CustomLogEntry Property

The customer-defined code number associated with a particular transaction. Short. Up to 32 different types of transactions can be tracked. Valid range is 0 through 31.

Public Dim CustomLogEntry As Short
    Member of [Namespace].CustomerInfoHeader
[C#]
public System.Int16 CustomLogEntry
    Member of [Namespace].CustomerInfoHeader

Remarks

  • Because the CustomLogEntry property is simply a number that is passed to MapPoint Web Service, you need to keep a record of the relationship between the number and the associated transaction you are tracking with the use of this property.

Example

 
[Visual Basic] 
'This example assumes that the service instance 
''commonService' has already been created and that 
'the MapPoint Web Service namespace has been imported 

' 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#]
//This example assumes that the service instance 
//'commonService' has already been created and that 
//the MapPoint Web Service namespace has been imported 

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

CustomerInfoHeader Class