Uploads a partial chunk of the file.

Syntax

Visual Basic (declaration)
Public Function UploadFileChunk( _ 
ByVal AuthenticationTicket as String, _ ByVal UploadHandler as String, _ ByVal FileChunk as Byte(), _ ByVal ChunkHEXCRC as String, _ ByVal LastChunk as bool) as XmlNode

C# (declaration)
public XmlNode UploadFileChunk( 
string AuthenticationTicket, string UploadHandler, byte[] FileChunk, string ChunkHEXCRC, bool LastChunk)

Parameters

AuthenticationTicket
    string inforouter ticket
UploadHandler
    string The upload handler
FileChunk
    byte[] The content of the file chunk in byte arrau
ChunkHEXCRC
    string Checksum of the file chunk as HEX for verification
LastChunk
    bool Is this last chunk of the or not

Return Value

returns xml fragment.
<response success="true" error="">
if success = "true", the document has been uploaded.
if success = "false", the error attribute returns the error description.

If the last chunk attribute is send as true response returns the checksum of the check sum of the file.