SmartCardEmulation.reportGetStatusChangeResultReports the successful result of a |SCardGetStatusChange| call. This maps to: PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga33247d5d1257d59e55647c3bb717db24 Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardgetstatuschangea
| Name | Type | Description |
|---|---|---|
requestId | string | |
readerStates | array |
{
"id": 1,
"method": "SmartCardEmulation.reportGetStatusChangeResult",
"params": {
"requestId": "request-1",
"readerStates": []
}
}
{
"id": 1,
"result": {}
}
const result = await send('SmartCardEmulation.reportGetStatusChangeResult', {"requestId": "request-1", "readerStates": []});
console.log(result);