Interface IAsciiResponseLine
- Namespace
- TechnologySolutions.Rfid.AsciiProtocol
- Assembly
- TechnologySolutions.Rfid.AsciiProtocol.Core.dll
Represents a single line of ASCII response with a header, colon separator and value (e.g. ME: this is a message)
public interface IAsciiResponseLine
- Extension Methods
Properties
FullLine
Gets the full line
string FullLine { get; }
Property Value
Header
Gets the two character header without the colon
string Header { get; }
Property Value
Value
Gets the value of the line. The value after the colon with white-space from the start and end removed
string Value { get; }