Table of Contents

Property SaveAsPdfHandler

Namespace
DotNetBrowser.Browser.Dialogs
Assembly
DotNetBrowser.dll

SaveAsPdfHandler

Gets or sets a handler that is used when the browser requests to display a file chooser dialog to save content as PDF.

IHandler<SaveAsPdfParameters, SaveAsPdfResponse> SaveAsPdfHandler { get; set; }

Property Value

IHandler<SaveAsPdfParameters, SaveAsPdfResponse>

Remarks

You can use this handler to display the save dialog, or provide the full file path without displaying any dialogs.

Use the SaveToFile(string) method to provide the selected files to the browser.

Use the Cancel() method to cancel the dialog.

If the handler throws an exception, the Cancel() method will be invoked.

Exceptions

ObjectDisposedException

The IBrowser has already been disposed.

ConnectionClosedException

The connection to the Chromium engine is closed.