ICEnroll::get_UseExistingKeySet 方法 (xenroll.h)
[自 Windows Server 2008 和 Windows Vista 起,這個屬性已不再可供使用。]
UseExistingKeySet屬性會設定或擷取布林值,以判斷是否應該使用現有的索引鍵。
此屬性最初是在 ICEnroll 介面中定義。
這是可讀寫的屬性。
語法
HRESULT get_UseExistingKeySet(
BOOL *fUseExistingKeys
);
參數
fUseExistingKeys
傳回值
無
備註
如果使用現有的索引鍵集, UseExistingKeySet 屬性必須設定為 true。
UseExistingKeySet屬性會影響下列方法的行為:
範例
BOOL bUEKS;
HRESULT hr;
// pEnroll is previously instantiated ICEnroll interface pointer
// get the UseExistingKeySet value
hr = pEnroll->get_UseExistingKeySet( &bUEKS );
if (FAILED( hr ))
printf("Failed get_UseExistingKeySet - %x\n", hr );
else
printf( "UseExistingKeySet: %d\n", bUEKS );
// set the UseExistingKeySet value
hr = pEnroll->put_UseExistingKeySet( TRUE );
if (FAILED( hr ))
printf("Failed put_UseExistingKeySet - %x\n", hr );
else
printf( "UseExistingKeySet set to TRUE\n" );
規格需求
最低支援的用戶端 | Windows XP [僅限傳統型應用程式] |
最低支援的伺服器 | Windows Server 2003 [僅限桌面應用程式] |
目標平台 | Windows |
標頭 | xenroll.h |
程式庫 | Uuid.lib |
Dll | Xenroll.dll |