Files
ntwain/NTwain/Triplets/DGControl/DGControl.PassThru.cs

25 lines
853 B
C#
Raw Normal View History

2014-04-02 19:13:15 -04:00
using NTwain.Data;
2014-04-02 19:01:21 -04:00
using NTwain.Values;
using System;
namespace NTwain.Triplets
{
2014-04-04 22:19:16 -04:00
/// <summary>
/// Represents <see cref="DataArgumentType.PassThru"/>.
/// </summary>
2014-04-02 19:01:21 -04:00
public sealed class PassThru : OpBase
{
2014-04-05 16:48:28 -04:00
internal PassThru(ITwainStateInternal session) : base(session) { }
2014-04-02 19:01:21 -04:00
/// <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 PInvoke.DsmEntry(Session.AppId, Session.SourceId, Message.PassThru, sourcePassThru);
}
}
}