mirror of
https://github.com/soukoku/ntwain.git
synced 2025-04-05 20:59:23 +08:00
31 lines
752 B
C#
31 lines
752 B
C#
using NTwain.Internals;
|
|
using System;
|
|
|
|
namespace NTwain.Triplets
|
|
{
|
|
/// <summary>
|
|
/// Base class for grouping triplet operations messages.
|
|
/// </summary>
|
|
public abstract class OpBase
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="OpBase" /> class.
|
|
/// </summary>
|
|
/// <param name="session">The session.</param>
|
|
/// <exception cref="System.ArgumentNullException"></exception>
|
|
internal OpBase(ITwainSessionInternal session)
|
|
{
|
|
if (session == null) { throw new ArgumentNullException("session"); }
|
|
Session = session;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the twain session.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The session.
|
|
/// </value>
|
|
internal ITwainSessionInternal Session { get; private set; }
|
|
}
|
|
}
|