HttpPartRetriever Class

PDFTron SilverDox SDK

Collapse imageExpand ImageCopy imageCopyHover image
Retrieves Document parts asynchronously from a .xod file hosted on a web server. The server is required to support the HTTP/1.1 protocol.

Namespace: PDFTron.SilverDox.IO
Assembly: SilverDox (in SilverDox.dll) Version: 1.2.4413.29010

Syntax

C#
public class HttpPartRetriever : IPartRetriever
Visual Basic
Public Class HttpPartRetriever _
	Implements IPartRetriever
Visual C++
public ref class HttpPartRetriever : IPartRetriever

Remarks

This retriever (like all retrievers) is typically passed to Document's LoadAsync(IPartRetriever, Action<(Of <<'(Exception>)>>)) method or DocumentViewer's LoadAsync(IPartRetriever, Action<(Of <<'(Exception>)>>)) method to facilitate loading a Document. This particular retriever is used to retrieve a Silverlight files from an HTTP server that supports byte-serving. Byte serving allows the retriever to transfer arbitrary parts of the file, allowing whatever page is visible to be transferred before other pages that have not yet been transferred. This is the preferred part retriever when requesting previously-converted documents from a web server.

Inheritance Hierarchy

System..::..Object
  PDFTron.SilverDox.IO..::..HttpPartRetriever

See Also