Class AsciiLineEventArgs
- Namespace
- TechnologySolutions.Rfid.AsciiProtocol
- Assembly
- TechnologySolutions.Rfid.AsciiProtocol.Core.dll
Provides data for a received line
public class AsciiLineEventArgs : EventArgs
- Inheritance
-
AsciiLineEventArgs
- Inherited Members
Constructors
AsciiLineEventArgs(IAsciiResponseLine, bool)
Initializes a new instance of the AsciiLineEventArgs class
public AsciiLineEventArgs(IAsciiResponseLine line, bool moreToFollow)
Parameters
line
IAsciiResponseLineThe received line
moreToFollow
boolTrue if more lines are buffered to follow
Properties
Handled
Gets or sets a value indicating whether this line has been used by a listener
public bool Handled { get; set; }
Property Value
Line
Gets the line that was received
public IAsciiResponseLine Line { get; }
Property Value
MoreToFollow
Gets a value indicating whether there are more lines buffered to be signalled
public bool MoreToFollow { get; }