Update of /cvsroot/nhibernate/nhibernate/src/NHibernate
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32147/NHibernate
Modified Files:
ITransaction.cs
Log Message:
Implemented IDisposable according to standard .net pattern
Added some more xml comments to Connection namespace.
Index: ITransaction.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/ITransaction.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** ITransaction.cs 24 Jan 2005 03:33:30 -0000 1.4
--- ITransaction.cs 30 Jan 2005 19:36:13 -0000 1.5
***************
*** 1,2 ****
--- 1,3 ----
+ using System;
using System.Data;
***************
*** 15,20 ****
/// at a time. Implementors are not intended to be threadsafe.
/// </remarks>
! //TODO: add IDisposable
! public interface ITransaction
{
/// <summary>
--- 16,20 ----
/// at a time. Implementors are not intended to be threadsafe.
/// </remarks>
! public interface ITransaction : IDisposable
{
/// <summary>
***************
*** 33,37 ****
/// <summary>
! /// Was the transaction folled back or set to rollback only?
/// </summary>
bool WasRolledBack { get; }
--- 33,37 ----
/// <summary>
! /// Was the transaction rolled back or set to rollback only?
/// </summary>
bool WasRolledBack { get; }
|