SqlTransaction.cs 427 B

12345678910111213141516171819202122232425
  1. //
  2. // System.Data.SqlClient.SqlTransaction.cs
  3. //
  4. // Author:
  5. // Rodrigo Moya ([email protected])
  6. //
  7. // (C) Ximian, Inc.
  8. //
  9. namespace System.Data.SqlClient
  10. {
  11. /// <summary>
  12. /// Represents a transaction to be performed at a SQL database.
  13. /// </summary>
  14. public interface SqlTransaction : IDbTransaction
  15. {
  16. void Commit();
  17. void Rollback();
  18. SqlConnection Connection{get;}
  19. IsolationLevel IsolationLevel{get;}
  20. }
  21. }