Deletes specified option value from the specified custom property set field.
Syntax
Visual Basic (declaration)
|
Public Function DeletePropertySetFieldOption( _ ByVal AuthenticationTicket as String, _
ByVal PropertySetName as String, _
ByVal FieldName as String, _
ByVal OptionValue as String) as XmlNode
|
C# (declaration)
|
public XmlNode DeletePropertySetFieldOption( string AuthenticationTicket,
string PropertySetName,
string FieldName,
string OptionValue)
|
Parameters
AuthenticationTicket
string infoRouter ticket
PropertySetName
string The propertyset name that the field option defined in
FieldName
string The name of the propertyset field that the option defined in.
OptionValue
string The value of the option that will be deleted.
Return Value
returns xml fragment.
<response success="true" error="">
if success attribute is "true", the property set field option has been deleted successfully.
if success attribute is "false", the error attribute indicates the encountered error.
Remarks