Tag Constructor

TegoOS

Tag Constructor
Instantiates a new tag.

Namespace: Tego.Rfid.Gen2
Assembly: Tego (in Tego.dll) Version: 1.0.6599.21663 (1.2017.413.1)
Syntax
public Tag(
	Reader reader,
	string epcHex,
	ushort[] tid = null
)
Public Sub New ( 
	reader As Reader,
	epcHex As String,
	Optional tid As UShort() = Nothing
)
public:
Tag(
	Reader^ reader, 
	String^ epcHex, 
	array<unsigned short>^ tid = nullptr
)
new : 
        reader : Reader * 
        epcHex : string * 
        ?tid : uint16[] 
(* Defaults:
        let _tid = defaultArg tid null
*)
-> Tag

Parameters

reader
Type: Tego.Rfid.Gen2Reader
Reader for this tag (typically the reader that found it).
epcHex
Type: SystemString
EPC of tag as hexadecimal.
tid (Optional)
Type: SystemUInt16
Optional TID of tag (partial or complete) as word array starting at address zero.
See Also