Table of Contents

Class CommittingTransactionEventArgs

Namespace
ThinkGeo.Core
Assembly
ThinkGeo.Core.dll

This class represents the parameters passed in through the CommittingTransaction event.

public class CommittingTransactionEventArgs : EventArgs
Inheritance
CommittingTransactionEventArgs
Inherited Members

Constructors

CommittingTransactionEventArgs()

This is the constructor of the event arguments.

public CommittingTransactionEventArgs()

Remarks

None

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

Properties

Cancel

This property allows you to cancel the transaction.

public bool Cancel { get; set; }

Property Value

bool

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

TransactionBuffer

Remarks

None