Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

MemoryMappedFileAccess Enumeration

.NET Framework (current version)
 

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

Namespace:   System.IO.MemoryMappedFiles
Assembly:  System.Core (in System.Core.dll)

[SerializableAttribute]
public enum class MemoryMappedFileAccess

Member nameDescription
CopyOnWrite

Read and write access to the file, with the restriction that any write operations will not be seen by other processes.

Read

Read-only access to the file.

ReadExecute

Read access to the file that can store and run executable code.

ReadWrite

Read and write access to the file.

ReadWriteExecute

Read and write access to the file that can can store and run executable code.

Write

Write-only access to file.

.NET Framework
Available since 4.0
Return to top
Show:
© 2017 Microsoft