Interface IRfidReader
RFID reader abstraction
Assembly: IDxxLA.dll
View Source
public interface IRfidReader : IObservable<byte[]>, IDisposable
Properties
LastRead
A cached copy of the last successfully read RFID tag.
View Source
byte[]? LastRead { get; }
Methods
StartReading()
Start reading for RFID tags.
View Source
void StartReading()
StopReading()
Stop reading for RFID tags.
View Source
void StopReading()
Events
RfidRead
Event fired when an RFID tag is read. Check the read status to see if the read was successful.
View Source
event RfidReadEventHandler RfidRead