HttpStreamingPartRetriever Class

PDFTron SilverDox SDK

Collapse imageExpand ImageCopy imageCopyHover image
Streams a .xod file hosted on a web server and display pages as they are available.

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

Syntax

C#
public class HttpStreamingPartRetriever : IPartRetriever
Visual Basic
Public Class HttpStreamingPartRetriever _
	Implements IPartRetriever
Visual C++
public ref class HttpStreamingPartRetriever : 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 document from an HTTP server that does not support byte-serving, or optionally when the document is converted to Silverlight XPS (XOD) on demand. This retriever transfers the entire document in order from beginning to end, with pages and thumbnails displayed as each page arrives.

Inheritance Hierarchy

System..::..Object
  PDFTron.SilverDox.IO..::..HttpStreamingPartRetriever

See Also