Table of Contents

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 string

The 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 string

The raw data.

isControl bool

Whether 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

string

IsControl

Gets whether Data refers to control information; when false, Data contains text information.

public bool IsControl { get; }

Property Value

bool