// /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // // Filename : Variables.cs // Version : 1.0 // Author(s) : Natalia Portillo // // Component : Component // // Revision : $Revision$ // Last change by : $Author$ // Date : $Date$ // // --[ Description ] ---------------------------------------------------------- // // Description // // --[ License ] -------------------------------------------------------------- // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // ---------------------------------------------------------------------------- // Copyright (C) 2011-2015 Claunia.com // ****************************************************************************/ // //$Id$ using System; using Microsoft.Win32.SafeHandles; namespace DiscImageChef.Devices { public partial class Device { Interop.PlatformID platformID; object fd; bool error; int lastError; DeviceType type; string manufacturer; string model; string revision; string serial; /// /// Gets the Platform ID for this device /// /// The Platform ID public Interop.PlatformID PlatformID { get { return platformID; } } /// /// Gets the file handle representing this device /// /// The file handle public object FileHandle { get { return fd; } } /// /// Gets or sets the standard timeout for commands sent to this device /// /// The timeout in seconds public uint Timeout { get; set; } /// /// Gets a value indicating whether this is in error. /// /// true if error; otherwise, false. public bool Error { get { return error; } } /// /// Gets the last error number. /// /// The last error. public int LastError { get { return lastError; } } /// /// Gets the device type. /// /// The device type. public DeviceType Type { get { return type; } } /// /// Gets the device's manufacturer /// /// The manufacturer. public string Manufacturer { get { return manufacturer; } } /// /// Gets the device model /// /// The model. public string Model { get { return model; } } /// /// Gets the device's revision. /// /// The revision. public string Revision { get { return revision; } } /// /// Gets the device's serial number. /// /// The serial number. public string Serial { get { return serial; } } } }