Open a PDF document from a uniform resource indicator such as a URL. The viewer will cache the entire document in memory for performance reasons so it is not necessary that thge URI is available after this method call returns.

Namespace: TallComponents.PDF
Assembly: TallComponents.PDF.Controls.WinForms (in TallComponents.PDF.Controls.WinForms.dll) Version: 2.0.46.0

Syntax

C#
public void Open(
	Uri uri,
	string password
)
Visual Basic
Public Sub Open ( _
	uri As Uri, _
	password As String _
)

Parameters

uri
Type: System..::..Uri

[Missing <param name="uri"/> documentation for "M:TallComponents.PDF.Document.Open(System.Uri,System.String)"]

password
Type: System..::..String
Password required to open the document.

Remarks

This is a synchronous method so the calling thread will block for some time. Calling this method from a UI thread will freeze your UI.

See Also