Class Antennas.Config
This class contains required information for configuring the antenna
Inheritance
Inherited Members
Namespace: rfid.api
Assembly: rfid.netcore.dll
Syntax
public class Config
Remarks
This class contains the information related to receiver sensitivity, transmit power and transmit frequency index. These indexes are referring to the receiver sensitivity, transmit power and transmit frequency table available as part of Reader Capabilities.
Constructors
Config()
Constructor
Declaration
public Config()
Config(UInt16, UInt16, UInt16)
Constructor with parameters
Declaration
public Config(ushort receiveSensitivityIndex, ushort transmitPowerIndex, ushort transmitFrequencyIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| System.UInt16 | receiveSensitivityIndex | Receive sensitivity index (available as part of reader capability) |
| System.UInt16 | transmitPowerIndex | Transmit power index (available as part of reader capability) |
| System.UInt16 | transmitFrequencyIndex | Transmit Frequency index (available as part of reader capability) |
Properties
ReceiveSensitivityIndex
Gets or sets the receive sensitivity index. The receive sensitivity table is available as part of reader capability.
Declaration
public ushort ReceiveSensitivityIndex { get; set; }
Property Value
| Type | Description |
|---|---|
| System.UInt16 |
TransmitFrequencyIndex
Gets or sets the transmit frequency index. Pointer to Frequency-hop table or Channel Index; In Frequency-hopping regulatory regions (ReaderCapabilites.IsHoppingEnabled is true), this is the Frequency hop table ID. In case of Fixed Frequency (ReaderCapabilites.IsHoppingEnabled is false), this is the one-based channel index in the FixedFrequencyTable.
Declaration
public ushort TransmitFrequencyIndex { get; set; }
Property Value
| Type | Description |
|---|---|
| System.UInt16 |
TransmitPowerIndex
Gets or sets the Transmit power index. The receive sensitivity table is available as part of reader capability.
Declaration
public ushort TransmitPowerIndex { get; set; }
Property Value
| Type | Description |
|---|---|
| System.UInt16 |