Metodo ISCard::AttachByHandle
[Il metodo AttachByHandle è disponibile per l'uso nei sistemi operativi specificati nella sezione Requisiti. Non è disponibile per l'uso in Windows Server 2003 con Service Pack 1 (SP1) e versioni successive, Windows Vista, Windows Server 2008 e versioni successive del sistema operativo. I moduli smart card offrono funzionalità simili.
Il metodo AttachByHandle collega l'oggetto ISCard a un handle di smart card aperto e configurato.
HRESULT AttachByHandle(
[in] HSCARD hCard
);
-
hCard [in]
-
Handle per una connessione aperta a una smart card.
Il metodo restituisce uno dei valori possibili seguenti.
Codice restituito | Descrizione |
---|---|
|
Operazione completata correttamente. |
|
Il parametro hCard non è valido. |
Oltre ai codici di errore COM elencati in precedenza, questa interfaccia può restituire un codice di errore della smart card se è stata chiamata una funzione smart card per completare la richiesta. Per altre informazioni, vedere Valori restituiti smart card.
Al termine dell'uso dell'handle, rilasciare l'allegato chiamando il metodo ISCard::D etach .
Nell'esempio seguente viene illustrato il collegamento a un handle di smart card.
HRESULT hr;
// hSC is of type HSCARD and has been previously assigned.
// Attach SCard to the smart card using the value in hSC.
hr = pISCard->AttachByHandle(hSC);
if (FAILED(hr))
{
printf("Failed AttachByHandle\n");
// Take other error handling action as needed.
}
// Proceed using attached reader.
Requisito | Valore |
---|---|
Client minimo supportato |
Windows XP [solo app desktop] |
Server minimo supportato |
Windows Server 2003 [solo app desktop] |
Fine del supporto client |
Windows XP |
Fine del supporto server |
Windows Server 2003 |
Intestazione |
|
Libreria dei tipi |
|
DLL |
|
IID |
IID_ISCard è definito come 1461AAC3-6810-11D0-918F-00AA0C18068 |