SmartCardEmulation.reportEstablishContextResultReports the successful result of a |SCardEstablishContext| call. This maps to: PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaa1b8970169fd4883a6dc4a8f43f19b67 Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardestablishcontext
| Name | Type | Description |
|---|---|---|
requestId | string | |
contextId | integer |
{
"id": 1,
"method": "SmartCardEmulation.reportEstablishContextResult",
"params": {
"requestId": "request-1",
"contextId": 1
}
}
{
"id": 1,
"result": {}
}
const result = await send('SmartCardEmulation.reportEstablishContextResult', {"requestId": "request-1", "contextId": 1});
console.log(result);