mirror of
https://github.com/soukoku/ntwain.git
synced 2025-11-08 18:44:47 +08:00
Some name-breaking changes so master is now v3. V2 will continue to be the code on nuget for now.
This commit is contained in:
@@ -2,8 +2,15 @@
|
||||
|
||||
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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user