UserProfile Type

Contains user data for a particular ProfileField .

Type Template

<...>
    <fieldID>xs:long</fieldID>
    <value>xs:string</value>
    <!-- List of ... -->
    <values>xs:string</values>
<...>

Note: Element descriptions are split into information that's relevant when you're creating an instance of this type and information relevant when you're receiving an instance of it. Occasionally these will differ.

Elements

Element Description
fieldID
Setting
Sets the id of the profile field.
Getting
Gets the id of the profile field.
value
Setting
Sets the value that the user selected for the profile field. If the field can contain multiple selections, the values should be set using .
Getting
Gets the value that the user selected for the profile field. If the field can contain multiple selections, this method will return null. To get the array of values, use .
values
Setting
Sets the array of values that the user selected for the profile field. If the field does not allow multiple selections, the value should be set using .
Getting
Gets the array of values that the user selected for the profile field. If the field does not allow multiple selections, this method will return null. To get the single value, use .