IPartRetriever Interface

PDFTron SilverDox SDK

Collapse imageExpand ImageCopy imageCopyHover image
The interface which is implemented by a part retriever. A part retriever is an object that is responsible for accessing a .xod document, and returning the requested document parts.

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

Syntax

C#
public interface IPartRetriever
Visual Basic
Public Interface IPartRetriever
Visual C++
public interface class IPartRetriever

Remarks

Two part retrievers are currently defined: LocalPartRetriever, which is used to access files on the local file system, and HttpPartRetriever, which is used to access files on a web server. A concrete instance of a part retriever is passed to Document's LoadAsync(IPartRetriever, Action<(Of <<'(Exception>)>>)) method or DocumentViewer's LoadAsync(IPartRetriever, Action<(Of <<'(Exception>)>>)) method to facilitate loading a Document.

See Also