Class TagAccess.WriteAccessParams
Parameters for Write Access Operation.
Inheritance
System.Object
TagAccess.WriteAccessParams
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: rfid.api
Assembly: rfid.netcore.dll
Syntax
public class WriteAccessParams
Constructors
WriteAccessParams()
Constructor
Declaration
public WriteAccessParams()
Properties
AccessPassword
Password to be used for the Access operation.
Declaration
public uint AccessPassword { get; set; }
Property Value
| Type | Description |
|---|---|
| System.UInt32 |
ByteOffset
Addresss of the first byte to be written to the chosen memory bank. Since Access operation is WORD aligned, offset be in double bytes.
Declaration
public uint ByteOffset { get; set; }
Property Value
| Type | Description |
|---|---|
| System.UInt32 |
MemoryBank
Memory bank on which data is to be written to.
Declaration
public MEMORY_BANK MemoryBank { get; set; }
Property Value
| Type | Description |
|---|---|
| MEMORY_BANK |
WriteData
Pointer to a byte array which contains the data to be written. Write operation occurs only on word boundaries, hence it is required to input this field accordingly. For e.g The word 0x1122 will be byte writeData[2] = {0x11, 0x22}
Declaration
public byte[] WriteData { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Byte[] |
WriteDataLength
Length of the array WriteData to be considered for write access operation.
Declaration
public uint WriteDataLength { get; set; }
Property Value
| Type | Description |
|---|---|
| System.UInt32 |