TriggerReaderImplementation Class

TegoOS

TriggerReaderImplementation Class
Base class to assist with implementing the IReaderImplementation interface for reader implementations.
Inheritance Hierarchy
SystemObject  Tego.Rfid.Gen2ReaderImplementation
    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 TriggerReaderImplementation : ReaderImplementation, 
	ITriggerProvider
Public MustInherit Class TriggerReaderImplementation
	Inherits ReaderImplementation
	Implements ITriggerProvider
public ref class TriggerReaderImplementation abstract : public ReaderImplementation, 
	ITriggerProvider
[<AbstractClassAttribute>]
type TriggerReaderImplementation =  
    class
        inherit ReaderImplementation
        interface ITriggerProvider
    end

The TriggerReaderImplementation type exposes the following members.

Constructors
  NameDescription
Protected methodTriggerReaderImplementation
Initializes a new instance of the TriggerReaderImplementation class
Top
Properties
  NameDescription
Public propertyCapabilities
Gets the capabilities of the reader, which will be available after connection.
(Inherited from ReaderImplementation.)
Public propertyIsConnected
Gets whether currently connected to reader.
(Inherited from ReaderImplementation.)
Protected propertyPersistence
Persistence mechanism provided through constructor.
(Inherited from ReaderImplementation.)
Protected propertyPersistenceID
Unique identifier for this reader.
(Inherited from ReaderImplementation.)
Public propertyPower
Gets or sets the reader power in dBm.
(Inherited from ReaderImplementation.)
Public propertySerialNumber
Reader serial number, which will be available after connection.
(Inherited from ReaderImplementation.)
Public propertySettings
Gets the settings for the reader. Settings are available after connection, but are not applied until Initialize is called.
(Inherited from ReaderImplementation.)
Public propertyTriggerIsPulled
True if main trigger is currently pulled. If more than one trigger is present the application must infer the state from the Trigger events.
Top
Methods
  NameDescription
Public methodConnect
Connect to reader and set its SerialNumber property.
(Inherited from ReaderImplementation.)
Public methodDisconnect
Disconnect from reader.
(Inherited from ReaderImplementation.)
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.
(Inherited from ReaderImplementation.)
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.
(Inherited from ReaderImplementation.)
Protected methodLoadSettingsT
Loads the settings using the persistence method.
(Inherited from ReaderImplementation.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodOnExecutionComplete
Raise the ExecutionComplete event if it has any listeners.
(Inherited from ReaderImplementation.)
Protected methodOnNotification
Raises the Notification event in order to provide a status indication.
(Inherited from ReaderImplementation.)
Protected methodOnTagResponse
Raise the TagResponse event if it has any listeners.
(Inherited from ReaderImplementation.)
Protected methodOnTrigger
Should be called when Trigger is pressed or released
Protected methodSaveSettingsT
Saves the settings using the persistence method.
(Inherited from ReaderImplementation.)
Public methodStartExecution
Asynchronously start execution of a list of operations on selected tags, reporting results via the TagResponse event.
(Inherited from ReaderImplementation.)
Public methodStopExecution
Request asynchronous execution be stopped (ExecutionComplete will be raised when stopped).
(Inherited from ReaderImplementation.)
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.
(Inherited from ReaderImplementation.)
Public eventNotification
Raised to report status indication from reader.
(Inherited from ReaderImplementation.)
Public eventTagResponse
Raised when a tag response becomes available after a StartExecution() call.
(Inherited from ReaderImplementation.)
Public eventTrigger
Event raised when a trigger is pulled or released.
Top
See Also