MemoryMappedFile: CreateViewAccessor

CreateViewAccessor

Creates a MemoryMappedViewAccessor that maps to a view of the memory-mapped file, and that has the specified offset, size, and access restrictions.



 Public Function CreateViewAccessor(
	  Optional ByVal Offset As Currency,
	  Optional ByVal Size As Long,
	  Optional ByVal Access As MemoryMappedFileAccess = MemoryMappedFileAccess. ReadWrite ) As MemoryMappedViewAccessor

Parameters

Offset
[ByVal] Optional. Currency. The byte at which to start the view.
Size
[ByVal] Optional. Long. The size of the view. Specify 0 (zero) to create a view that starts at Offset and ends approximately at the end of the memory-mapped file.
Access
[ByVal] Optional. MemoryMappedFileAccess. One of the enumeration values that specifies the type of access allowed to the memory-mapped file. The default is ReadWrite.  

Default: MemoryMappedFileAccess . ReadWrite

Return Values

MemoryMappedViewAccessor -  A randomly accessible block of memory.

Remarks

You can use the view returned by this method for random access to a memory-mapped file.

To create a complete view of the memory-mapped file, specify 0 (zero) for the Size parameter. If you do this, the size of the view might be smaller or larger than the size of the source file on disk. This is because views are provided in units of system pages, and the size of the view is rounded up to the next system page size.

Exceptions

ExceptionCondition
Offset or Size is a negative value.
-or-
Access is not a valid MemoryMappedFileAccess enumeration value.
UnauthorizedAccessExceptionAccess is invalid for the memory-mapped file.

See Also

Project CorLib Overview

Class MemoryMappedFile Overview