MapWriteFlags
in package
Map write bit flags.
Requires server versions >= 4.3.
Table of Contents
Methods
- CreateOnly() : MapWriteFlags
- MapWriteFlagsCreateOnly means: If the key already exists, the item will be denied.
- Default() : MapWriteFlags
- MapWriteFlagsDefault is the Default. Allow create or update.
- NoFail() : MapWriteFlags
- MapWriteFlagsNoFail means: Do not raise error if a map item is denied due to write flag constraints.
- Partial() : MapWriteFlags
- MapWriteFlagsNoFail means: Allow other valid map items to be committed if a map item is denied due to write flag constraints.
- UpdateOnly() : MapWriteFlags
- MapWriteFlagsUpdateOnly means: If the key already exists, the item will be overwritten.
Methods
CreateOnly()
MapWriteFlagsCreateOnly means: If the key already exists, the item will be denied.
public
static CreateOnly() : MapWriteFlags
If the key does not exist, a new item will be created.
Return values
MapWriteFlagsDefault()
MapWriteFlagsDefault is the Default. Allow create or update.
public
static Default() : MapWriteFlags
Return values
MapWriteFlagsNoFail()
MapWriteFlagsNoFail means: Do not raise error if a map item is denied due to write flag constraints.
public
static NoFail() : MapWriteFlags
Return values
MapWriteFlagsPartial()
MapWriteFlagsNoFail means: Allow other valid map items to be committed if a map item is denied due to write flag constraints.
public
static Partial() : MapWriteFlags
Return values
MapWriteFlagsUpdateOnly()
MapWriteFlagsUpdateOnly means: If the key already exists, the item will be overwritten.
public
static UpdateOnly() : MapWriteFlags
If the key does not exist, the item will be denied.