Click or drag to resize

FileStreamFactory Constructor (String, FileMode, FileAccess)

Initializes a new instance of the factory that constructs a new FileStream with FileStream(String, FileMode, FileAccess) when OpenStream is called.

Namespace:  AGI.Foundation.Infrastructure
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public FileStreamFactory(
	string path,
	FileMode mode,
	FileAccess access
)

Parameters

path
Type: SystemString
The 'path' parameter passed to the FileStream constructor.
mode
Type: System.IOFileMode
The 'mode' parameter passed to the FileStream constructor.
access
Type: System.IOFileAccess
The 'access' parameter passed to the FileStream constructor.
See Also