Represents modifiers for space write operations.

C# | Visual Basic | Visual C++ | J# |
[FlagsAttribute] public enum WriteModifiers
<FlagsAttribute> _ Public Enumeration WriteModifiers
[FlagsAttribute] public enum class WriteModifiers
/** @attribute FlagsAttribute */ public enum WriteModifiers

Member | Description |
---|---|
WriteOnly |
Only write is valid - if the entry exists in the space, a EntryAlreadyInSpaceException will be thrown.
![]() |
UpdateOnly |
Only update is valid - if the entry does not exist in the space, a EntryNotInSpaceException will be thrown.
![]() |
PartialUpdate |
Partial update will be performed - fields with null values in the new entry will be ignored.
![]() |
UpdateOrWrite |
Both update and write are valid - if the entry exists in the space it will be updated, otherwise it will be written.
![]() |
NoReturnValue |
The method will not return a value.
This improves performance due to reduction of the overhead of creating the result.
|