Downloads a partial chunk of the file

Syntax

Visual Basic (declaration)
Public Function DownloadFileChunk( _ 
ByVal AuthenticationTicket as String, _ ByVal DownloadHandler as String, _ ByVal StartOffset as Integer, _ ByVal ChunkSize as Integer) as XmlNode

C# (declaration)
public XmlNode DownloadFileChunk( 
string AuthenticationTicket, string DownloadHandler, integer StartOffset, integer ChunkSize)

Parameters

AuthenticationTicket
    string infoRouter ticket
DownloadHandler
    string An infoRouter download handler of th document
StartOffset
    integer Start offset of the file to be downloaded.
ChunkSize
    integer Requested file chunk size (in bytes) from the server.

Return Value

Returns a chunk of the document in a byte array.

Remarks

The download handler must be created before calling this method.