Create Method
public static Reader Create(string uriString, Region region, int antsnum)
| Parameter | Description |
|---|---|
| uriString | IP address or serial port number of reader, like com1. |
| region | Working frequency band area of the reader. |
| antsnum | The number of physical ports of reader. |
try
{
Reader rdr = Reader.Create("192.168.0.250", Region.NA, 4);
}
catch (Exception ex)
{
MessageBox.Show("Create failed:" + ex.ToString());
}
Disconnect Method
public abstract void Disconnect()
rdr.Disconnect();