MapWriteMode
in package
MapWriteMode should only be used for server versions < 4.3.
MapWriteFlags are recommended for server versions >= 4.3.
Table of Contents
Methods
- CreateOnly() : MapWriteMode
- If the key already exists, the write will fail.
- Update() : MapWriteMode
- If the key already exists, the item will be overwritten.
- UpdateOnly() : MapWriteMode
- If the key already exists, the item will be overwritten.
Methods
CreateOnly()
If the key already exists, the write will fail.
public
static CreateOnly() : MapWriteMode
If the key does not exist, a new item will be created.
Return values
MapWriteModeUpdate()
If the key already exists, the item will be overwritten.
public
static Update() : MapWriteMode
If the key does not exist, a new item will be created.
Return values
MapWriteModeUpdateOnly()
If the key already exists, the item will be overwritten.
public
static UpdateOnly() : MapWriteMode
If the key does not exist, the write will fail.