We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 753ba97 commit 941e733Copy full SHA for 941e733
src/NHibernate/Transaction/AfterTransactionCompletes.cs
@@ -12,6 +12,12 @@ public class AfterTransactionCompletes : ISynchronization
12
13
#region Constructors/Destructors
14
15
+ /// <summary>
16
+ /// Create an AfterTransactionCompletes that will execute the given delegate
17
+ /// when the transaction is completed. The action delegate will receive
18
+ /// the value 'true' if the transaction was completed successfully.
19
+ /// </summary>
20
+ /// <param name="whenCompleted"></param>
21
public AfterTransactionCompletes(Action<bool> whenCompleted)
22
{
23
_whenCompleted = whenCompleted;
0 commit comments