2014-04-03 07:13:15 +08:00
|
|
|
|
using System;
|
2014-04-03 07:01:21 +08:00
|
|
|
|
using NTwain.Data;
|
|
|
|
|
using NTwain.Values;
|
|
|
|
|
|
|
|
|
|
namespace NTwain.Triplets
|
|
|
|
|
{
|
2014-04-05 10:19:16 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Represents <see cref="DataArgumentType.ImageFileXfer"/>.
|
|
|
|
|
/// </summary>
|
2014-04-03 07:01:21 +08:00
|
|
|
|
sealed class ImageFileXfer : OpBase
|
|
|
|
|
{
|
2014-04-04 19:25:11 +08:00
|
|
|
|
internal ImageFileXfer(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 disk-file transfer mechanism. It causes the transfer to begin.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public ReturnCode Get()
|
|
|
|
|
{
|
|
|
|
|
Session.VerifyState(6, 6, DataGroups.Image, DataArgumentType.ImageFileXfer, Message.Get);
|
|
|
|
|
IntPtr z = IntPtr.Zero;
|
|
|
|
|
return PInvoke.DsmEntry(Session.AppId, Session.SourceId, DataGroups.Image, DataArgumentType.ImageFileXfer, Message.Get, ref z);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|