ISCardCmd::get_LeField 方法

[ get_LeField 方法可用于“要求”部分中指定的操作系统。 它不适用于 Windows Server 2003 Service Pack 1 (SP1) 及更高版本、Windows Vista、Windows Server 2008 和操作系统的后续版本。 智能卡模块提供类似的功能。]

get_LeField 方法返回应用程序协议数据单元的 Le 字段 (APDU) 。

语法

HRESULT get_LeField(
  [out] LONG *plSize
);

parameters

plSize [out]

指向返回时 Le 字段值的指针。

返回值

方法返回以下可能值之一。

返回代码 说明
S_OK
操作已成功完成。
E_INVALIDARG
plSize 参数无效。

 

示例

以下示例演示如何从 应用程序协议数据单元 检索 Le 字段值, (APDU) 。 该示例假定 pISCardCmd 是指向 ISCardCmd 接口实例的有效指针。

LONG     lLe;
HRESULT  hr;

// Retrieve the Le field value.
hr = pISCardCmd->get_LeField(&lLe);
if (FAILED(hr))
{
    printf("Failed get_LeField\n");
    // Take other error handling action.
}
else
    printf("Le field value returned is %d\n", lLe);

要求

要求
最低受支持的客户端
Windows XP [仅限桌面应用]
最低受支持的服务器
Windows Server 2003 [仅限桌面应用]
客户端支持终止
Windows XP
终止服务器支持
Windows Server 2003
标头
Scarddat.h
类型库
Scarddat.tlb
DLL
Scardssp.dll
IID
IID_ISCardCmd定义为 D5778AE3-43DE-11D0-9171-00AA00C18068

另请参阅

ISCardCmd