| C2STransactionStatus Enumeration |
Specifies the kind of component transactions executed within a
server.
Namespace: RW.Server.ComponentAssembly: RW.Server.Component (in RW.Server.Component.dll) Version: 6.3.0.0 (0.8.0.0)
Syntax [FlagsAttribute]
public enum C2STransactionStatus
<FlagsAttribute>
Public Enumeration C2STransactionStatus
[FlagsAttribute]
public enum class C2STransactionStatus
Members
| Member name | Value | Description |
---|
| All | 0 |
Selects all the transaction optional features (rollback,
acknowledgement, notification).
|
| Default | 1 |
Refers to the default component-to-server transaction
|
| NoRollback | 4 |
The component transaction must not fail and must not be rolled
back even if some of its editing operations fail.
|
| NoAcknowledge | 8 |
No acknowledgement from the server is requested on the component
side when the transaction is completed.
|
| NoNotify | 16 |
No notification cycle must be performed by the server after the
transaction is completed.
|
| SvRollback | 32 |
Indicates if the component transaction must be rolled back by
the server.
|
See Also