Interface IApduTransform
Represents an arbitrary pipeline that accepts command APDUs and returns response APDUs.
public interface IApduTransform
Remarks
Can often be composed, using the constructor of an implementing type.
Methods
Cleanup()
Cleans up the pipeline; should be called only once, after all Invoke
calls.
void Cleanup()
Invoke(CommandApdu, Type, Type)
Passes the supplied command into the pipeline, and returns the final response.
ResponseApdu Invoke(CommandApdu command, Type commandType, Type responseType)
Parameters
command
CommandApducommandType
TyperesponseType
Type
Returns
Setup()
Sets up the pipeline; should be called only once, before any Invoke
calls.
void Setup()