Class LedInfo
This class contains the LED information of the reader such as LED Color, duration and blink flag
Inheritance
System.Object
LedInfo
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 LedInfo
Constructors
LedInfo()
LoginInfo contructor
Declaration
public LedInfo()
LedInfo(LED_COLOR, UInt32, Boolean)
Overloaded contructor takes LED Color, ducation and blink flag
Declaration
public LedInfo(LED_COLOR ledColor, uint durationSeconds, bool blink)
Parameters
| Type | Name | Description |
|---|---|---|
| LED_COLOR | ledColor | Specifies LED Color |
| System.UInt32 | durationSeconds | Duration in Seconds. If zero, the LED blinks continuously |
| System.Boolean | blink | Specifies LED to be blinked or not |
Properties
Blink
Gets or sets the Blink Flag of the reader
Declaration
public bool Blink { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
DurationSeconds
Gets or sets the led light on duration of the reader. If zero, the LED blinks continuously
Declaration
public uint DurationSeconds { get; set; }
Property Value
| Type | Description |
|---|---|
| System.UInt32 |
LEDColor
Gets or sets the LED Color of the reader
Declaration
public LED_COLOR LEDColor { get; set; }
Property Value
| Type | Description |
|---|---|
| LED_COLOR |