IReaderImplementation Interface

TegoOS

IReaderImplementation Interface
Common interface for implementing readers.

Namespace: Tego.Rfid.Gen2
Assembly: Tego (in Tego.dll) Version: 1.0.6599.21663 (1.2017.413.1)
Syntax
public interface IReaderImplementation
Public Interface IReaderImplementation
public interface class IReaderImplementation
type IReaderImplementation =  interface end

The IReaderImplementation type exposes the following members.

Properties
  NameDescription
Public propertyCapabilities
Gets the capabilities of the reader, which will be available after connection.
Public propertyIsConnected
Gets whether currently connected to reader.
Public propertyPower
Gets or sets the reader power in dBm.
Public propertySerialNumber
Reader serial number, which will be available immediately after connection.
Public propertySettings
Gets the settings for the reader. Settings are available after a Connect, but are not applied until Initialize is called.
Top
Methods
  NameDescription
Public methodConnect
Connect to reader and set its SerialNumber property.
Public methodDisconnect
Disconnect from reader.
Public methodExecute
Synchronously execute a list of operations on selected tags.
Public methodInitialize
Initialize reader, and sets its capabilities and other properties. Should be called after successful connection.
Public methodStartExecution
Asynchronously start execution of a list of operations on selected tags, reporting results via the TagResponse event.
Public methodStopExecution
Request asynchronous execution be stopped (ExecutionComplete will be raised when stopped).
Top
Events
  NameDescription
Public eventExecutionComplete
Raised when execution finishes after a StartExecution() call.
Public eventNotification
Raised to report status notifications from reader.
Public eventTagResponse
Raised when a tag response becomes available after a StartExecution() call.
Top
See Also