mirror of
https://github.com/soukoku/ntwain.git
synced 2026-02-25 13:04:07 +08:00
Refactoring xfer logic from twainsession out.
This commit is contained in:
22
NTwain/ITwainSession.cs
Normal file
22
NTwain/ITwainSession.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using NTwain.Data;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace NTwain
|
||||
{
|
||||
/// <summary>
|
||||
/// General interface for a TWAIN session.
|
||||
/// </summary>
|
||||
public interface ITwainSession : ITwainState, ITwainOperation
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the supported caps for the currently open source.
|
||||
/// </summary>
|
||||
/// <value>
|
||||
/// The supported caps.
|
||||
/// </value>
|
||||
IList<CapabilityId> SupportedCaps { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user