mirror of
https://github.com/soukoku/ntwain.git
synced 2025-04-05 20:59:23 +08:00
23 lines
528 B
C#
23 lines
528 B
C#
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; }
|
|
}
|
|
}
|