Class Zones.ZoneConfig
Logical group of Antennas denoting a Zone along with the configurations
Inheritance
System.Object
Zones.ZoneConfig
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 ZoneConfig
Constructors
ZoneConfig()
The default constructor for the Zone configuration
Declaration
public ZoneConfig()
ZoneConfig(UInt16, String, AntennaConfig[])
Constructor without Global configuration
Declaration
public ZoneConfig(ushort zoneId, string zoneName, AntennaConfig[] antennaConfig)
Parameters
| Type | Name | Description |
|---|---|---|
| System.UInt16 | zoneId | Unique Id of the Zone |
| System.String | zoneName | Name to Identify the Zone |
| AntennaConfig[] | antennaConfig | Configuration of the Antennas part of the Zone |
ZoneConfig(UInt16, String, AntennaConfig[], AntennaConfig)
Constructor which add all configuration
Declaration
public ZoneConfig(ushort zoneId, string zoneName, AntennaConfig[] antennaConfig, AntennaConfig globalAntennaConfig)
Parameters
| Type | Name | Description |
|---|---|---|
| System.UInt16 | zoneId | Unique Id of the Zone |
| System.String | zoneName | Name to Identify the Zone |
| AntennaConfig[] | antennaConfig | Configuration of the Antennas part of the Zone |
| AntennaConfig | globalAntennaConfig | Configuration appllicable to all Antennas in this Zone |
Properties
AntennaConfig
List of Antenna configuration with Antenna IDs which belongs to the Zone
Declaration
public AntennaConfig[] AntennaConfig { get; set; }
Property Value
| Type | Description |
|---|---|
| AntennaConfig[] |
ZoneAntennaConfig
Configuration appllicable to all Antennas in this Zone
Declaration
public AntennaConfig ZoneAntennaConfig { get; set; }
Property Value
| Type | Description |
|---|---|
| AntennaConfig |
ZoneId
Unique Id of the Zone
Declaration
public ushort ZoneId { get; set; }
Property Value
| Type | Description |
|---|---|
| System.UInt16 |
ZoneName
Name to identify the Zone
Declaration
public string ZoneName { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |