FilterPattern Constructor

TegoOS

FilterPattern Constructor
Create a filter pattern to be applied after tag selection.

Namespace: Tego.Rfid.Gen2
Assembly: Tego (in Tego.dll) Version: 1.0.6599.21663 (1.2017.413.1)
Syntax
public FilterPattern(
	Bank bank,
	int bitAddress,
	ushort[] mask,
	int maskBitCount,
	ushort[] pattern,
	int patternBitCount
)
Public Sub New ( 
	bank As Bank,
	bitAddress As Integer,
	mask As UShort(),
	maskBitCount As Integer,
	pattern As UShort(),
	patternBitCount As Integer
)
public:
FilterPattern(
	Bank bank, 
	int bitAddress, 
	array<unsigned short>^ mask, 
	int maskBitCount, 
	array<unsigned short>^ pattern, 
	int patternBitCount
)
new : 
        bank : Bank * 
        bitAddress : int * 
        mask : uint16[] * 
        maskBitCount : int * 
        pattern : uint16[] * 
        patternBitCount : int -> FilterPattern

Parameters

bank
Type: Tego.Rfid.Gen2Bank
Bank containing data to be matched.
bitAddress
Type: SystemInt32
Bit address of data to be matched.
mask
Type: SystemUInt16
Mask to be applied to tag data before matching pattern (mask should start at most significant position).
maskBitCount
Type: SystemInt32
Length in bits of mask to be applied.
pattern
Type: SystemUInt16
Pattern that must be matched (pattern should start at most significant position).
patternBitCount
Type: SystemInt32
Length in bits of data to be matched.
See Also