Allow selecting/opening a source by id in case of duplicate names.

This commit is contained in:
soukoku 2015-04-21 06:23:33 -04:00
parent 4322aa0b07
commit 59b5437ba0
5 changed files with 46 additions and 1 deletions

View File

@ -103,6 +103,14 @@ namespace NTwain
internal TWIdentity Identity { get; private set; }
/// <summary>
/// Gets the id of the source.
/// </summary>
/// <value>
/// The identifier.
/// </value>
public int Id { get { return Identity.Id; } }
/// <summary>
/// Gets the source's product name.
/// </summary>

View File

@ -8,6 +8,14 @@ namespace NTwain
/// </summary>
public interface IDataSource : ITripletControl
{
/// <summary>
/// Gets the id of the source.
/// </summary>
/// <value>
/// The identifier.
/// </value>
int Id { get; }
/// <summary>
/// Gets the source's product name.
/// </summary>

View File

@ -136,6 +136,13 @@ namespace NTwain
/// <returns></returns>
ReturnCode OpenSource(string sourceName);
/// <summary>
/// Quick shortcut to open a source.
/// </summary>
/// <param name="sourceId">Id of the source.</param>
/// <returns></returns>
ReturnCode OpenSource(int sourceId);
/// <summary>
/// Gets the manager status. Only call this at state 2 or higher.
/// </summary>

View File

@ -23,7 +23,7 @@ namespace NTwain
/// <summary>
/// The build release version number.
/// </summary>
public const string Build = "3.3.2"; // change this for each nuget release
public const string Build = "3.3.3"; // change this for each nuget release
}

View File

@ -309,6 +309,28 @@ namespace NTwain
return ReturnCode.Failure;
}
/// <summary>
/// Quick shortcut to open a source.
/// </summary>
/// <param name="sourceId">Id of the source.</param>
/// <returns></returns>
public ReturnCode OpenSource(int sourceId)
{
var curSrc = CurrentSource;
if (curSrc != null)
{
// TODO: close any open sources first
}
var hit = this.Where(s => s.Id == sourceId).FirstOrDefault();
if (hit != null)
{
return hit.Open();
}
return ReturnCode.Failure;
}
/// <summary>
/// Gets the manager status. Only call this at state 2 or higher.
/// </summary>