Show / Hide Table of Contents

Class BarcodeReaderInfo

Information about a Barcode Reader device that is connected to a CloudPRNT client.

Inheritance
System.Object
BarcodeReaderInfo
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: StarMicronics.CloudPrnt.CpMessage
Assembly: cs.temp.dll.dll
Syntax
public class BarcodeReaderInfo

Properties

name

Logical device name for the barcode reader. This name may be used to request operations of this reader, such as claiming it to receive scan events

Declaration
public string name { get; set; }
Property Value
Type Description
System.String

scan

An array of scan events that have occured since thae last CloudPRNT poll. Scan events will occur only if the Barcode Reader has been claimed. If the Barcode reader is not claimed, or no events have occured since the last poll, then this property will be null;

Declaration
public BarcodeReaderScan[] scan { get; set; }
Property Value
Type Description
BarcodeReaderScan[]

status

Information about the status of the barcode reader at the time the CloudPRNT client issued it's last poll.

Declaration
public BarcodeReaderStatus status { get; set; }
Property Value
Type Description
BarcodeReaderStatus
In This Article
Back to top