Click or drag to resize

OpenMultipleFilesResponseSelectFiles Method

Creates a OpenMultipleFilesResponse that notifies the browser that the files were selected in the file chooser dialog.

Namespace:  DotNetBrowser.Browser.Dialogs.Handlers
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.16.0
Syntax
C#
public static OpenMultipleFilesResponse SelectFiles(
	params string[] files
)

Parameters

files
Type: SystemString
The selected files.

Return Value

Type: OpenMultipleFilesResponse
The OpenMultipleFilesResponse instance that can be used as a return value in OpenMultipleFilesHandler implementation.
Exceptions
ExceptionCondition
ArgumentException The files collection is null, empty, contains null or whitespace strings or contains strings that do not represent the existing files.
See Also