WriteOperation Constructor

TegoOS

WriteOperation Constructor
Creates the parameters for a write operation.

Namespace: Tego.Rfid.Gen2
Assembly: Tego (in Tego.dll) Version: 1.0.6599.21663 (1.2017.413.1)
Syntax
public WriteOperation(
	Bank bank,
	int address,
	ushort[] writeData,
	uint password
)
Public Sub New ( 
	bank As Bank,
	address As Integer,
	writeData As UShort(),
	password As UInteger
)
public:
WriteOperation(
	Bank bank, 
	int address, 
	array<unsigned short>^ writeData, 
	unsigned int password
)
new : 
        bank : Bank * 
        address : int * 
        writeData : uint16[] * 
        password : uint32 -> WriteOperation

Parameters

bank
Type: Tego.Rfid.Gen2Bank
Bank, from where data should be written
address
Type: SystemInt32
Address, from where to start writing
writeData
Type: SystemUInt16
Data, which should be written to memory
password
Type: SystemUInt32
Access password
See Also