Updates the properties of the specified document.

Syntax

Visual Basic (declaration)
Public Function UpdateDocumentProperties( _ 
ByVal AuthenticationTicket as String, _ ByVal Path as String, _ ByVal NewDocumentName as String, _ ByVal NewDescription as String, _ ByVal NewUpdateInstructions as String) as XmlNode

C# (declaration)
public XmlNode UpdateDocumentProperties( 
string AuthenticationTicket, string Path, string NewDocumentName, string NewDescription, string NewUpdateInstructions)

Parameters

AuthenticationTicket
    string infoRouter ticket
Path
    string The path of a document that the properties to be updated
NewDocumentName
    string New name of the document
NewDescription
    string New description of the document
NewUpdateInstructions
    string New Update Instructions of the document

Return Value

returns xml fragment.
<response success="true" error="">
if success attribute is "true", the properties of the document has been updated successfully.
if success attribute is "false", the error attribute indicates the encountered error.

Remarks

The caller must have at least "Change" permission on the document.