IFileDialogCallbackContinue Method  | 
Version 94.4.20 
            Continue the file selection.
            
 
    Namespace: 
   CefSharp
    Assembly:
   CefSharp (in CefSharp.dll) Version: 94.4.20.0 (94.4.20.0)
Syntaxvoid Continue(
	int selectedAcceptFilter,
	List<string> filePaths
)
void Continue(
	int selectedAcceptFilter, 
	List<String^>^ filePaths
)
Parameters
- selectedAcceptFilter
 - Type: SystemInt32
should be the 0-based index of the value selected from the accept filters
            array passed to OnFileDialog(IWebBrowser, IBrowser, CefFileDialogMode, CefFileDialogFlags, String, String, ListString, Int32, IFileDialogCallback) - filePaths
 - Type: System.Collections.GenericListString
should be a single value or a list of values depending on the dialog mode.
            An empty value is treated the same as calling Cancel(). 
See Also