PdfLoadErrorEventArgs Class
Definition
Event arguments for load error event.
public class PdfLoadErrorEventArgs
Constructors
| Name | Description |
|---|---|
| PdfLoadErrorEventArgs | Initializes a new instance of the Avalonia.Controls.PdfLoadErrorEventArgs class. |
PdfLoadErrorEventArgs Constructor
Initializes a new instance of the Avalonia.Controls.PdfLoadErrorEventArgs class.
public PdfLoadErrorEventArgs(string message, Exception exception)
Parameters
message string
A human-readable description of the failure.
exception Exception
The underlying exception, if any.
Properties
| Name | Description |
|---|---|
| Exception | Gets the underlying exception that caused the failure, or . |
| Message | Gets a human-readable description of why the document failed to load. |
Exception Property
Gets the underlying exception that caused the failure, or .
public Exception Exception { get; set; }
Message Property
Gets a human-readable description of why the document failed to load.
public string Message { get; set; }