PsrSyncOperation Enumeration |
Syncoperation, which should be executed on the server
Namespace:
PsrApi.Data.Enums
Assembly:
PsrApi (in PsrApi.dll) Version: 9.2.2.32703 (27.03.2025)+b9af25405a8dc67f2b73227b442cec4f08fd2d8a
Syntaxpublic enum PsrSyncOperation
Members
| Member name | Value | Description |
---|
| None | 0 |
Nothing should be done with this item
|
| Add | 1 |
Data should be added
|
| Update | 2 |
Data should be updated. Ignored if no matching data exists.
|
| UpdateIfTimestampNewer | 3 |
Data should be updated, if it is newer then the current Data. Ignored, if no matching data exists.
|
| AddOrUpdate | 4 |
Data gets updated if it exists and added if it does not exist
|
| AddOrUpdateIfTimestampNewer | 5 |
Data gets added if it does not exist. If the data exists, it only gets updated if it is newer, else it gets ignored
|
| Set | 6 |
Only for lists. The list of data will exist exactly the way it is beeing received. If Set exists on one item in a listelement,
it behaves like set is set on all list items.
|
| Delete | 7 |
Data should be deleted
|
| AddAsHistory | 8 |
A historical data should be added
|
See Also