Class CommandResponse
Response of a CommandRequest send to the card.
Immutable class
Inheritance
System.Object
CommandResponse
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: SIX.TimApi
Assembly: TimApi.dll
Syntax
public class CommandResponse
Constructors
CommandResponse(Int32, ResponseType, String, String, String)
Create command response.
Declaration
public CommandResponse(int order, ResponseType responseType, string cardResponse, string uid, string atr)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | order | |
ResponseType | responseType | |
System.String | cardResponse | |
System.String | uid | |
System.String | atr |
Properties
Atr
Answer to reset information received from the card.
Declaration
public string Atr { get; }
Property Value
Type | Description |
---|---|
System.String |
CardResponse
Response received from card.
Declaration
public string CardResponse { get; }
Property Value
Type | Description |
---|---|
System.String |
Order
Specifies the order of a CommandRequest/CommandResponse in the CommandRequestList/CommandResponseList.
Declaration
public int Order { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
ResponseType
Defines the outcome type of the command response.
Declaration
public ResponseType ResponseType { get; }
Property Value
Type | Description |
---|---|
ResponseType |
Uid
UID of the card.
Declaration
public string Uid { get; }
Property Value
Type | Description |
---|---|
System.String |