ReaderImplementation Class

TegoOS

ReaderImplementation Class
Base class to assist with implementing the IReaderImplementation interface for reader implementations.
Inheritance Hierarchy
SystemObject  Tego.Rfid.Gen2ReaderImplementation
    Tego.Devices.ZetiZetiReader
    Tego.Rfid.Gen2TriggerReaderImplementation

Namespace: Tego.Rfid.Gen2
Assembly: Tego (in Tego.dll) Version: 1.0.6599.21663 (1.2017.413.1)
Syntax
public abstract class ReaderImplementation : IReaderImplementation
Public MustInherit Class ReaderImplementation
	Implements IReaderImplementation
public ref class ReaderImplementation abstract : IReaderImplementation
[<AbstractClassAttribute>]
type ReaderImplementation =  
    class
        interface IReaderImplementation
    end

The ReaderImplementation type exposes the following members.

Constructors
  NameDescription
Public methodReaderImplementation
Constructor
Public methodReaderImplementation(IPersistence, String)
Constructor
Top
Properties
  NameDescription
Public propertyCapabilities
Gets the capabilities of the reader, which will be available after connection.
Public propertyIsConnected
Gets whether currently connected to reader.
Protected propertyPersistence
Persistence mechanism provided through constructor.
Protected propertyPersistenceID
Unique identifier for this reader.
Public propertyPower
Gets or sets the reader power in dBm.
Public propertySerialNumber
Reader serial number, which will be available after connection.
Public propertySettings
Gets the settings for the reader. Settings are available after connection, 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 methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodExecute
Synchronously execute a list of operations on selected tags.
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodInitialize
Initialize reader, and sets its capabilities and other properties. Should be called after successful connection.
Protected methodLoadSettingsT
Loads the settings using the persistence method.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodOnExecutionComplete
Raise the ExecutionComplete event if it has any listeners.
Protected methodOnNotification
Raises the Notification event in order to provide a status indication.
Protected methodOnTagResponse
Raise the TagResponse event if it has any listeners.
Protected methodSaveSettingsT
Saves the settings using the persistence method.
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).
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Events
  NameDescription
Public eventExecutionComplete
Raised when execution finishes after a StartExecution() call.
Public eventNotification
Raised to report status indication from reader.
Public eventTagResponse
Raised when a tag response becomes available after a StartExecution() call.
Top
See Also