Returns the property sets that have been applied to documents and folders in the specified path.

Syntax

Visual Basic (declaration)
Public Function GetPropertySets( _ 
ByVal AuthenticationTicket as String, _ ByVal Path as String) as XmlNode

C# (declaration)
public XmlNode GetPropertySets( 
string AuthenticationTicket, string Path)

Parameters

AuthenticationTicket
    string infoRouter ticket
Path
    string A document or folder Path

Return Value

returns xml fragment.
<response success="true" error="">
if success attribute is "true", the property set information has been retrieved successfully like the xml sample below.
if success attribute is "false", the error attribute indicates the encountered error.
Sub Nodes returns property set information.

<response success="true" error="">
  <Propertysets>
    <propertyset Name="INCOMINGFAX">
      <propertyrow RowNbr="1" FAXTO="Head Office" FAXFROM="Department 01" SUBJECT="2007 budget" FAXDATE="2007-02-05 00:00:00" />
    </propertyset>
  </Propertysets>
</response>