ntwain/NTwain/Triplets/DGImage/DGImage.ImageMemXfer.cs

22 lines
668 B
C#
Raw Normal View History

2014-04-03 07:13:15 +08:00
using NTwain.Data;
2014-04-21 04:57:38 +08:00
using NTwain.Internals;
2014-04-03 07:01:21 +08:00
namespace NTwain.Triplets
{
sealed class ImageMemXfer : OpBase
{
internal ImageMemXfer(ITwainSessionInternal session) : base(session) { }
2014-04-03 07:01:21 +08:00
/// <summary>
/// This operation is used to initiate the transfer of an image from the Source to the application via
/// the Buffered Memory transfer mechanism.
/// </summary>
/// <param name="xfer">The xfer.</param>
/// <returns></returns>
public ReturnCode Get(TWImageMemXfer xfer)
{
Session.VerifyState(6, 7, DataGroups.Image, DataArgumentType.ImageMemXfer, Message.Get);
2014-04-16 18:53:05 +08:00
return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.Get, xfer);
2014-04-03 07:01:21 +08:00
}
}
}