Interface ITransaction
Represents a transaction.
Namespace: Gossip.Transactions
Assembly: Gossip.dll
Syntax
public interface ITransaction : IDisposable
Properties
| Improve this Doc View SourceValue
The actual
Declaration
IDbTransaction Value { get; }
Property Value
| Type | Description |
|---|---|
| IDbTransaction |
Methods
| Improve this Doc View SourceCommit()
Commit the transaction.
Declaration
void Commit()
Rollback()
Rollback the transaction.
Declaration
void Rollback()
Rollback(String)
Rollback the named transaction.
Declaration
void Rollback(string transactionName)
Parameters
| Type | Name | Description |
|---|---|---|
| String | transactionName | The transaction name. |