ntwain/NTwain/Triplets/DGAudio/DGAudio.AudioFileXfer.cs

25 lines
830 B
C#
Raw Normal View History

2014-04-21 04:57:38 +08:00
using NTwain.Data;
using NTwain.Internals;
using System;
2014-04-03 07:01:21 +08:00
namespace NTwain.Triplets
{
2014-04-05 10:19:16 +08:00
/// <summary>
/// Represents <see cref="DataArgumentType.AudioFileXfer"/>.
/// </summary>
2014-04-03 07:01:21 +08:00
sealed class AudioFileXfer : OpBase
{
2014-04-06 04:48:28 +08:00
internal AudioFileXfer(ITwainStateInternal session) : base(session) { }
2014-04-03 07:01:21 +08:00
/// <summary>
/// This operation is used to initiate the transfer of audio 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.Audio, DataArgumentType.AudioFileXfer, Message.Get);
IntPtr z = IntPtr.Zero;
2014-04-16 18:53:05 +08:00
return Dsm.DsmEntry(Session.AppId, Session.SourceId, DataGroups.Audio, DataArgumentType.AudioFileXfer, Message.Get, ref z);
2014-04-03 07:01:21 +08:00
}
}
}