Returns the static or dynamic options of the specified property set field.

Syntax

Visual Basic (declaration)
Public Function GetPropertySetFieldOptions( _ 
ByVal AuthenticationTicket as String, _ ByVal PropertySetName as String, _ ByVal PropertyFieldName as String, _ ByVal OptionFilter as String) as XmlNode

C# (declaration)
public XmlNode GetPropertySetFieldOptions( 
string AuthenticationTicket, string PropertySetName, string PropertyFieldName, string OptionFilter)

Parameters

AuthenticationTicket
    string infoRouter ticket
PropertySetName
    string the name of Propertyset that the field options to be retrieved
PropertyFieldName
    string the name of Propertyset fiel name that the options to be retrieved
OptionFilter
    string to filter propertyset options

Return Value

returns xml fragment.
<response success="true" error="">
if success attribute is "true", the results have been received succesfully like the xml sample below.
if success attribute is "false", the error attribute indicates the encountered error.


<response success="true" error="">
  <options>
    <option value="Level I" />
    <option value="Level II" />
    <option value="Level III" />
    <option value="Level IV" />
  </options>
</response>