CommittingTransactionEventArgs¶
Namespace: ThinkGeo.Core
This class represents the parameters passed in through the CommittingTransaction event.
public class CommittingTransactionEventArgs : System.EventArgs
Inheritance object → EventArgs → CommittingTransactionEventArgs
Properties¶
Cancel¶
Gets or sets a value indicating whether the pending transaction should be cancelled.
public bool Cancel { get; set; }
Property Value¶
TransactionBuffer¶
Gets or sets the transaction buffer that is about to be committed.
public TransactionBuffer TransactionBuffer { get; set; }
Property Value¶
Constructors¶
CommittingTransactionEventArgs(TransactionBuffer)¶
This is the default constructor for the event.
public CommittingTransactionEventArgs(TransactionBuffer transactionBuffer)
Parameters¶
transactionBuffer TransactionBuffer
This parameter represents the transaction buffer that needs to be committed.
Remarks:
None
CommittingTransactionEventArgs()¶
This is the constructor of the event arguments.
public CommittingTransactionEventArgs()
Remarks:
None