FindServiceSoap.UserInfoFindHeaderValue Property

FindServiceSoap.UserInfoFindHeaderValue Property

The context-related information (UserInfoFindHeader object) that defines the locale, language, and unit of measurement in which results are returned from the FindServiceSoap methods.


Public UserInfoFindHeaderValue As UserInfoFindHeader


[C#]

public UserInfoFindHeader UserInfoFindHeaderValue;

Example

[Visual Basic]
 
' Set the country context of the find service to Canada
Dim findService As New FindServiceSoap()
Dim myUserInfoFindHeader As New UserInfoFindHeader()
myUserInfoFindHeader.Context = New CountryRegionContext()
myUserInfoFindHeader.Context.EntityID = 39
findService.UserInfoFindHeaderValue = myUserInfoFindHeader



[C#]

//Set the country context of the find service to Canada
FindServiceSoap findService = new FindServiceSoap();
UserInfoFindHeader myUserInfoFindHeader  = new UserInfoFindHeader();
myUserInfoFindHeader.Context = new CountryRegionContext();
myUserInfoFindHeader.Context.EntityID = 39;
findService.UserInfoFindHeaderValue = myUserInfoFindHeader;


See Also

  FindServiceSoap Class   |   UserInfoFindHeader Class