UriDocumentSource
Class
Represents a document source that loads PDF documents from a Uri.
Definition
Namespace:Telerik.Maui.Controls.PdfViewer
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public class UriDocumentSource : DocumentSource, INotifyPropertyChanged
Inheritance: objectNotifyPropertyChangedBaseDocumentSourceUriDocumentSource
Implements:
Inherited Members
Constructors
Initializes a new instance of the UriDocumentSource class.
C#
public UriDocumentSource()
Initializes a new instance of the UriDocumentSource class with the specified Uri.
C#
public UriDocumentSource(Uri uri)
The Uri of the PDF document to load.
Properties
Uri
Uri
Gets or sets the Uri of the PDF document to load.
C#
public Uri Uri { get; set; }
The Uri of the PDF document.
Operators
Performs an implicit conversion from Uri to UriDocumentSource.
C#
public static implicit operator UriDocumentSource(Uri uri)
The Uri to convert.
Returns:A new UriDocumentSource instance with the specified Uri.