ICEnroll2::get_EnableT61DNEncoding 方法 (xenroll.h)
[从 Windows Server 2008 和 Windows Vista 起,此属性不再可供使用。]
EnableT61DNEncoding 属性设置或检索一个布尔值,该值确定是否将请求中的可分辨名称编码为 T61 字符串,而不是 Unicode 字符串。
T61 字符为 8 位,因此要编码的所有 Unicode 字符必须小于或等于 0xFF。 此属性首先在 ICEnroll2 接口中定义。
此属性是可读写的。
语法
HRESULT get_EnableT61DNEncoding(
BOOL *fBool
);
参数
fBool
返回值
无
备注
EnableT61DNEncoding 属性会影响以下方法的行为:
示例
BOOL bT61DN;
HRESULT hr;
// pEnroll is a previously instantiated ICEnroll2 interface pointer.
// Get the EnableT61DNEncoding Boolean value.
hr = pEnroll->get_EnableT61DNEncoding( &bT61DN );
if ( FAILED ( hr ) )
printf("Failed get_EnableT61DNEncoding - %x\n", hr );
else
printf( "T61DNEncoding: %s\n",
( bT61DN ? "Enabled" : "Disabled" ) );
// Set the EnableT61DNEncoding value.
hr = pEnroll->put_EnableT61DNEncoding( TRUE );
if ( FAILED ( hr ) )
printf("Failed Setting EnableT61DNEncoding - %x\n", hr );
else
printf( "EnableT61DNEncoding was set to TRUE\n" );
要求
要求 | 值 |
---|---|
最低受支持的客户端 | Windows XP [仅限桌面应用] |
最低受支持的服务器 | Windows Server 2003 [仅限桌面应用] |
目标平台 | Windows |
标头 | xenroll.h |
Library | Uuid.lib |
DLL | Xenroll.dll |