MemoryMappedFile: MemoryMappedFileAccess

MemoryMappedFileAccess

Specifies access capabilities and restrictions for a memory-mapped file or view.

 Public Enum MemoryMappedFileAccess

Values

ReadWrite = 0
Read and write access to the file.
ReadOnly
Read-only access to the file.
WriteOnly
Write-only access to file.
CopyOnWrite
Read and write access to the file, with the restriction that any write operations will not be seen by other processes.
ReadExecute
Read access to the file that can store and run executable code.
ReadWriteExecute
Read and write access to the file that can store and run executable code.

See Also

Project CorLib Overview

Class MemoryMappedFile Overview