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¶
This property allows you to cancel the transaction.
public bool Cancel { get; set; }
Property Value¶
Remarks:
This property allows you to cancel the transaction.
TransactionBuffer¶
This property returns the transaction buffer that needs to be committed.
public TransactionBuffer TransactionBuffer { get; set; }
Property Value¶
Remarks:
None
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