Show / Hide Table of Contents

Class BarcodeReaderInfo

CloudPRNTクライアントに接続されているバーコードリーダーデバイスについての情報を表します。

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

バーコードリーダーの論理デバイス名を取得または設定します。 この名称は、クレームや スキャンイベントの受け取り等のリーダーの操作を要求する際に使われます。

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

scan

最後のCloudPRNTポーリング以降に発生したバーコードリーダーについてのスキャンイベントの配列を取得または設定します。 スキャンイベントは、バーコードリーダーがクレームされた場合にのみ発生します。 バーコードリーダーがクレームされていない場合、またはクレームされているが最後のポーリング以降イベントが 発生していない場合、このプロパティはnullが設定されます。

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

status

CloudPRNTクライアントが発行した最後のポーリングリクエスト時のバーコードリーダーの ステータス情報を取得または設定します。

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