ModuleAPI C# Version Developer's Guide
Write Tag EPC

WriteTag Method

Write the EPC code of a tag.
 
Method Signature
  
public abstract void WriteTag(ModuleTech.TagFilter target, ModuleTech.TagData epc)
  
Parameters
Parameter Description
target Tag filter, set as null if it is not necessary.
epc The EPC code.
  
Example
Write EPC code "0x008600040000410000000280" into a tag
  
TagData epccode = new TagData("008600040000410000000280");
rdr.WriteTag(null, epccode);
  
Attention
Users could also write EPC code through WriteTagMemWords. But the difference with WriteTag is that the WriteTag changes EPC length field of the PC field while writing EPC code.