Click or drag to resize

IDialogsOpenMultipleFilesHandler Property

Gets or sets a handler that is used when the browser requests to display a file chooser dialog to open several files.

Namespace:  DotNetBrowser.Browser.Dialogs
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.16.0
Syntax
C#
IHandler<OpenMultipleFilesParameters, OpenMultipleFilesResponse> OpenMultipleFilesHandler { get; set; }

Property Value

Type: IHandlerOpenMultipleFilesParameters, OpenMultipleFilesResponse
Exceptions
ExceptionCondition
ObjectDisposedExceptionThe IBrowser has already been disposed.
ConnectionClosedExceptionThe connection to the Chromium engine is closed.
Remarks

You can use this handler to display the file chooser, or provide the files without displaying any dialogs.

Use the SelectFiles(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.

See Also