using NTwain.Data; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace NTwain { /// /// General interface for a TWAIN session. /// public interface ITwainSession : ITwainState, ITwainOperation { /// /// Gets the supported caps for the currently open source. /// /// /// The supported caps. /// IList SupportedCaps { get; } } }