Interface ISelectParameters
- Namespace
- TechnologySolutions.Rfid.AsciiProtocol.Parameters
- Assembly
- TechnologySolutions.Rfid.AsciiProtocol.Core.dll
Parameters for Select operations in commands and responses
public interface ISelectParameters
- Extension Methods
Properties
InventoryOnly
Gets or sets a value indicating whether only the inventory is performed (the select operation is not performed before the inventory when set to Yes)
TriState? InventoryOnly { get; set; }
Property Value
SelectAction
Gets or sets the action to perform in the Select operation
SelectAction? SelectAction { get; set; }
Property Value
SelectBank
Gets or sets the Bank to use for the select mask
Databank? SelectBank { get; set; }
Property Value
SelectData
Gets or sets the select mask data in 2 character ASCII Hex pairs padded to ensure full bytes
string SelectData { get; set; }
Property Value
SelectLength
Gets or sets the length in bits of the select mask
int? SelectLength { get; set; }
Property Value
- int?
SelectOffset
Gets or sets the number of bits from the start of the block to the start of the select mask
int? SelectOffset { get; set; }
Property Value
- int?
SelectTarget
Gets or sets the target flag for the Select operation
SelectTarget? SelectTarget { get; set; }