mirror of
https://github.com/soukoku/ntwain.git
synced 2025-04-05 13:15:07 +08:00
23 lines
675 B
C#
23 lines
675 B
C#
using NTwain.Data;
|
|
using NTwain.Internals;
|
|
|
|
namespace NTwain.Triplets
|
|
{
|
|
sealed class ImageMemFileXfer : OpBase
|
|
{
|
|
internal ImageMemFileXfer(ITwainStateInternal session) : base(session) { }
|
|
|
|
/// <summary>
|
|
/// This operation is used to initiate the transfer of an image from the Source to the application via
|
|
/// the Memory-File transfer mechanism.
|
|
/// </summary>
|
|
/// <param name="xfer">The xfer.</param>
|
|
/// <returns></returns>
|
|
public ReturnCode Get(TWImageMemXfer xfer)
|
|
{
|
|
Session.VerifyState(6, 6, DataGroups.Image, DataArgumentType.ImageMemFileXfer, Message.Get);
|
|
return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.Get, xfer);
|
|
}
|
|
|
|
}
|
|
} |