Class TagAccess.WriteSpecificFieldAccessParams
Parameters for Write Specific Field like TagID, Kill Password or Access Password Access Operation.
Inheritance
System.Object
TagAccess.WriteSpecificFieldAccessParams
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 WriteSpecificFieldAccessParams
Constructors
WriteSpecificFieldAccessParams()
Constructor
Declaration
public WriteSpecificFieldAccessParams()
Properties
AccessPassword
Password to be used for the Access operation.
Declaration
public uint AccessPassword { get; set; }
Property Value
| Type | Description |
|---|---|
| System.UInt32 |
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 |