Updates the properties of the specified document - UpdateDocumentProperties1 - Alternate method

Syntax

Visual Basic (declaration)
Public Function UpdateDocumentProperties1( _ 
ByVal AuthenticationTicket as String, _ ByVal Path as String, _ ByVal NewDocumentName as String, _ ByVal NewDescription as String, _ ByVal NewUpdateInstructions as String, _ ByVal NewDocumentSource as String, _ ByVal NewDocumentLanguage as String, _ ByVal NewDocumentAuthor as String) as XmlNode

C# (declaration)
public XmlNode UpdateDocumentProperties1( 
string AuthenticationTicket, string Path, string NewDocumentName, string NewDescription, string NewUpdateInstructions, string NewDocumentSource, string NewDocumentLanguage, string NewDocumentAuthor)

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 Description of the document
NewUpdateInstructions
    string Update Instructions of the document
NewDocumentSource
    string Source of the document
NewDocumentLanguage
    string Language of the document
NewDocumentAuthor
    string Content author of the document (not the owner)

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.