ntwain/src/NTwain/Internals/ICommittable.cs
2015-03-15 17:36:17 -04:00

17 lines
414 B
C#

using System;
namespace NTwain.Internals
{
/// <summary>
/// For something that is in a pending state until finalized with a Commit() call.
/// The changes are rolled back if it is disposed without being committed.
/// </summary>
interface ICommittable : IDisposable
{
/// <summary>
/// Commits the pending changes.
/// </summary>
void Commit();
}
}