Class TagAccess.BlockPermalockAccessParams
Parameters for Block Permalock Access Operation.
Inheritance
Inherited Members
Namespace: rfid.api
Assembly: rfid.netcore.dll
Syntax
public class BlockPermalockAccessParams
Constructors
BlockPermalockAccessParams()
Constructor.
Declaration
public BlockPermalockAccessParams()
Properties
AccessPassword
Password to be used for the Access operation.
Declaration
public uint AccessPassword { get; set; }
Property Value
| Type | Description |
|---|---|
| System.UInt32 |
ByteCount
Number of Bytes of the Mask to be read. This is valid only when readLock is false. i.e. for read operation
Declaration
public uint ByteCount { get; set; }
Property Value
| Type | Description |
|---|---|
| System.UInt32 |
ByteOffset
Byte offset; Address of the first byte for the Mask.
Declaration
public uint ByteOffset { get; set; }
Property Value
| Type | Description |
|---|---|
| System.UInt32 |
Mask
Mask specifies which memory blocks a tag permalocks. Masks depends on the readLock as follows: When readLock is false, the Reader omits permalock mask. when readLock is true, the Reader should permalock as specified by the Mask. The application should allocate an byte array and assign it to this field. The Mask to be used for bit-wise comparison should be filled in the array.
Declaration
public byte[] Mask { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Byte[] |
MaskLength
Number of bytes in pMask to be taken for comparison.
Declaration
public uint MaskLength { get; set; }
Property Value
| Type | Description |
|---|---|
| System.UInt32 |
MemoryBank
Memory Bank on which Block Permalock operation is to be performed.
Declaration
public MEMORY_BANK MemoryBank { get; set; }
Property Value
| Type | Description |
|---|---|
| MEMORY_BANK |
ReadLock
ReadLock specifies whether a tag backscatters the perlock status of, or permalocks, one of more blocks within the memory bank as specified. when ReadLock is true, it performs block perma lock in specified memory bank starting at offset. When ReadLock is false, the Reader get the permalock mask.
Declaration
public bool ReadLock { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |