using NTwain.Data; using NTwain.Internals; namespace NTwain.Triplets { /// /// Represents . /// public sealed class PassThru : OpBase { internal PassThru(ITwainStateInternal session) : base(session) { } /// /// PASSTHRU is intended for the use of Source writers writing diagnostic applications. It allows /// raw communication with the currently selected device in the Source. /// /// The source pass thru. /// 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); } } }