Metodo IDirectorySearch::AbandonSearch (iads.h)
Il metodo IDirectorySearch::AbandonSearch abbandona una ricerca avviata da una chiamata precedente al metodo ExecuteSearch .
Sintassi
HRESULT AbandonSearch(
[in] ADS_SEARCH_HANDLE phSearchResult
);
Parametri
[in] phSearchResult
Fornisce un handle al contesto di ricerca.
Valore restituito
Questo metodo restituisce i valori restituiti standard, incluso S_OK se la prima riga viene ottenuta correttamente.
Per altri valori restituiti, vedere Codici di errore ADSI.
Commenti
IDirectorySearch::AbandonSearch può essere usato se è possibile specificare le opzioni Page_Size o Asincrone tramite IDirectorySearch::SetSearchPreference prima dell'esecuzione della ricerca.
Esempio
LPWSTR pszAttr[] = { L"ADsPath", L"Name", L"samAccountName" };
ADS_SEARCH_HANDLE hSearch;
DWORD dwCount= sizeof(pszAttr)/sizeof(LPWSTR);
////////////////////////////////////////////////////////////////////
// NOTE: Assume that m_pSearch is an IDirectorySearch pointer to the
// object at the base of the search, and that the appropriate search
// preferences have been set.
// For brevity, omit error handling.
////////////////////////////////////////////////////////////////////
// Search for all users with a last name that starts with h.
hr = m_pSearch->ExecuteSearch(L"(&(objectClass=user)(sn=h*))", pszAttr, dwCount, &hSearch );
while( m_pSearch->GetNextRow( hSearch) != S_ADS_NOMORE_ROWS )
{
// Get the samAccountName
hr = m_pSearch->GetColumn( hSearch, pszAttr[2], &col );
if ( FAILED(hr) )
{
hr = m_pSearch->AbandonSearch( hSearch );
hr = m_pSearch->CloseSearchHandle(hSearch);
m_pSearch->Release();
break;
}
if (col.dwADsType == ADSTYPE_CASE_IGNORE_STRING)
printf("%S\n", col.pADsValues->CaseIgnoreString);
m_pSearch->FreeColumn( &col );
}
m_pSearch->CloseSearchHandle( hSearch );
Requisiti
Client minimo supportato | Windows Vista |
Server minimo supportato | Windows Server 2008 |
Piattaforma di destinazione | Windows |
Intestazione | iads.h |
DLL | Activeds.dll; Adsldp.dll; Adsldpc.dll |