Table of Contents

Interface IAsciiResponse

Namespace
TechnologySolutions.Rfid.AsciiProtocol
Assembly
TechnologySolutions.Rfid.AsciiProtocol.Core.dll

A response to as IAsciiCommand

public interface IAsciiResponse
Extension Methods

Properties

ErrorCode

Gets the error code or an empty string if none

string ErrorCode { get; }

Property Value

string

IsSuccessful

Gets a value indicating whether the command executed successfully

bool IsSuccessful { get; }

Property Value

bool

Lines

Gets all the lines as received from the last response

IEnumerable<IAsciiResponseLine> Lines { get; }

Property Value

IEnumerable<IAsciiResponseLine>

Messages

Gets the messages received from the last response

IEnumerable<string> Messages { get; }

Property Value

IEnumerable<string>

Parameters

Gets the parameters received from the last response

IEnumerable<string> Parameters { get; }

Property Value

IEnumerable<string>

Response

Gets all the lines as received from the last response

[Obsolete("Lines is preferred")]
IEnumerable<IAsciiResponseLine> Response { get; }

Property Value

IEnumerable<IAsciiResponseLine>