Adds a option value to the specified custom propertset field.

Syntax

Visual Basic (declaration)
Public Function AddPropertySetFieldOption( _ 
ByVal AuthenticationTicket as String, _ ByVal PropertySetName as String, _ ByVal FieldName as String, _ ByVal OptionValue as String) as XmlNode

C# (declaration)
public XmlNode AddPropertySetFieldOption( 
string AuthenticationTicket, string PropertySetName, string FieldName, string OptionValue)

Parameters

AuthenticationTicket
    string infoRouter ticket
PropertySetName
    string The name of the propertyset
FieldName
    string The name of the custom property field. This name will be a field name in the database.
OptionValue
    string The option value.

Return Value

returns xml fragment.
<response success="true" error="">
if success attribute is "true", the option has been added to the property set field.
if success attribute is "false", the error attribute indicates the encountered error.

Remarks

The caller must be the administrator.
The added options must be unique.