mirror of
https://github.com/soukoku/ntwain.git
synced 2026-01-02 20:42:17 +08:00
More cleanup for v1.
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
using NTwain.Data;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
@@ -9,8 +10,20 @@ namespace NTwain
|
||||
/// <summary>
|
||||
/// General interface for a TWAIN session.
|
||||
/// </summary>
|
||||
public interface ITwainSession : ITwainState, ITwainOperation
|
||||
public interface ITwainSession : INotifyPropertyChanged, ITwainOperation
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the source id used for the session.
|
||||
/// </summary>
|
||||
/// <value>The source id.</value>
|
||||
TWIdentity SourceId { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the current state number as defined by the TWAIN spec.
|
||||
/// </summary>
|
||||
/// <value>The state.</value>
|
||||
int State { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the supported caps for the currently open source.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user