OpenFileDialog.OpenFiles Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates an array that contains one read-only stream for each file selected by the user using OpenFileDialog.
public:
cli::array <System::IO::Stream ^> ^ OpenFiles();
[System.Security.SecurityCritical]
public System.IO.Stream[] OpenFiles ();
public System.IO.Stream[] OpenFiles ();
[<System.Security.SecurityCritical>]
member this.OpenFiles : unit -> System.IO.Stream[]
member this.OpenFiles : unit -> System.IO.Stream[]
Public Function OpenFiles () As Stream()
Returns
An array of multiple new Stream objects that contain the selected files.
- Attributes
Exceptions
No files were selected in the dialog.
Remarks
Each file is opened with read-only permission (Open, Read, and Read), whether or not the Read Only checkbox is checked in the dialog. Because each file is opened without the ability to overwrite or write to the file, an application can safely load one or more files while executing within partial trust restrictions.