using NTwain.Data; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace NTwain { /// /// General interface for a TWAIN session. /// public interface ITwainSession : INotifyPropertyChanged, ITwainOperation { /// /// Gets the currently open source. /// /// /// The current source. /// TwainSource Source { get; } /// /// Gets the current state number as defined by the TWAIN spec. /// /// The state. int State { get; } } }