Class BarCodeRawDataReceivedEventArgs
- Namespace
- Acuit.Pinpoint.BarCodeScanning
- Assembly
- Acuit.Pinpoint.BarCodeScanning.dll
Arguments passed to RawDataReceived event handlers.
public class BarCodeRawDataReceivedEventArgs : EventArgs
- Inheritance
-
BarCodeRawDataReceivedEventArgs
- Inherited Members
Constructors
BarCodeRawDataReceivedEventArgs(string)
Initializes a new instance of the BarCodeRawDataReceivedEventArgs class.
public BarCodeRawDataReceivedEventArgs(string data)
Parameters
data
stringThe raw data.
Exceptions
- ArgumentNullException
data
is null.
BarCodeRawDataReceivedEventArgs(string, bool)
Initializes a new instance of the BarCodeRawDataReceivedEventArgs class.
public BarCodeRawDataReceivedEventArgs(string data, bool isControl)
Parameters
data
stringThe raw data.
isControl
boolWhether
data
refers to control information; when false,data
contains text information.
Exceptions
- ArgumentNullException
data
is null.
Properties
Data
Gets the raw data.
public string Data { get; }
Property Value
IsControl
public bool IsControl { get; }