mirror of
https://github.com/soukoku/ntwain.git
synced 2025-04-05 13:15:07 +08:00
24 lines
838 B
C#
24 lines
838 B
C#
using NTwain.Data;
|
|
using NTwain.Internals;
|
|
|
|
namespace NTwain.Triplets
|
|
{
|
|
/// <summary>
|
|
/// Represents <see cref="DataArgumentType.PassThru"/>.
|
|
/// </summary>
|
|
public sealed class PassThru : OpBase
|
|
{
|
|
internal PassThru(ITwainStateInternal session) : base(session) { }
|
|
/// <summary>
|
|
/// PASSTHRU is intended for the use of Source writers writing diagnostic applications. It allows
|
|
/// raw communication with the currently selected device in the Source.
|
|
/// </summary>
|
|
/// <param name="sourcePassThru">The source pass thru.</param>
|
|
/// <returns></returns>
|
|
public ReturnCode PassThrough(TWPassThru sourcePassThru)
|
|
{
|
|
Session.VerifyState(4, 7, DataGroups.Control, DataArgumentType.PassThru, Message.PassThru);
|
|
return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.PassThru, sourcePassThru);
|
|
}
|
|
}
|
|
} |