| MvComponentBeginS2CTransaction Method |
Transaction Control from the Server to the Component. Called whenever a
server-to-component transaction is opened.
Namespace: RW.Server.ComponentAssembly: RW.Server.Component (in RW.Server.Component.dll) Version: 6.3.0.0 (0.8.0.0)
Syntax protected virtual bool BeginS2CTransaction(
S2CTransactionStatus trnsSt,
int trnsId
)
Protected Overridable Function BeginS2CTransaction (
trnsSt As S2CTransactionStatus,
trnsId As Integer
) As Boolean
protected:
virtual bool BeginS2CTransaction(
S2CTransactionStatus trnsSt,
int trnsId
)
Parameters
- trnsSt
- Type: RW.Server.ComponentS2CTransactionStatus
The transaction type. - trnsId
- Type: SystemInt32
The identifier of the component-to-server transaction that
triggered the current server-to-component transaction. The
value of this argument is 0 for a notification transaction.
Return Value
Type:
Booleantrue. When it is overridden and returns
false, the transaction is aborted. Otherwise, the
modification, acknowledgement or rollback events are propagated
to the representations.
See Also