View Single Post

  #2 (permalink)  
Old 04-10-2006
Mark - MSFT Mark - MSFT is offline
Junior Member
Yellow Belt
 
Join Date: Dec 2005
Posts: 22
Send a message via AIM to Mark - MSFT
CustomerInfoHeader Value

No problem, you can do this by setting a value for the CustomerInfoHeader Property like this:

[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;


Mark - MSFT
Reply With Quote