FileAccessMode Enumeration |
An enumeration specifying the API to use to read the database
Namespace:
MaxMind.Db
Assembly:
MaxMind.Db (in MaxMind.Db.dll) Version: 2.4.0
Syntax public enum FileAccessMode
Public Enumeration FileAccessMode
public enum class FileAccessMode
Members
| Member name | Value | Description |
---|
| MemoryMapped | 0 |
Open the file in memory mapped mode. Does not load into real memory.
|
| MemoryMappedGlobal | 1 |
Open the file in global memory mapped mode. Requires the 'create global objects' right. Does not load into real memory.
|
| Memory | 2 |
Load the file into memory.
|
See Also