mirror of
https://github.com/soukoku/ntwain.git
synced 2025-04-05 08:57:53 +08:00
19 lines
591 B
C#
19 lines
591 B
C#
using NTwain.Data;
|
|
using NTwain.Internals;
|
|
|
|
namespace NTwain.Triplets
|
|
{
|
|
/// <summary>
|
|
/// Represents <see cref="DataArgumentType.DeviceEvent"/>.
|
|
/// </summary>
|
|
public sealed class DeviceEvent : OpBase
|
|
{
|
|
internal DeviceEvent(ITwainStateInternal session) : base(session) { }
|
|
public ReturnCode Get(out TWDeviceEvent sourceDeviceEvent)
|
|
{
|
|
Session.VerifyState(4, 7, DataGroups.Control, DataArgumentType.DeviceEvent, Message.Get);
|
|
sourceDeviceEvent = new TWDeviceEvent();
|
|
return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.Get, sourceDeviceEvent);
|
|
}
|
|
}
|
|
} |