FileStream: FileShare

FileShare

How the underlying stream can be shared with other processes.

 Public Enum FileShare

Values

None = 0
The stream is not shared with other processes.
ReadShare = 1
Other processes can access the file with read access only.
WriteShare = 2
Other processes can access the file with write access only.
ReadWriteShare = 3
Other processes can access the file with read and write access.

See Also

Project CorLib Overview

Class FileStream Overview