Recupero di un oggetto da una raccolta
Il codice seguente recupera l'indirizzo IP di un client da una raccolta di client. La variabile pClientsCollection punta a un'interfaccia ISdoCollection per la raccolta. Per informazioni su come recuperare l'oggetto raccolta, vedere Recupero di una raccolta .
HRESULT hr
_variant_t vtClientName = L"Test Client";
//
// Get the client "Test Client" from the collection of clients
//
CComPtr<IDispatch> pFoundClientDispatch;
hr = pClientsCollection->Item(&vtClientName, &pFoundClientDispatch);
if (FAILED(hr))
{
return hr;
}
CComPtr<ISdo> pFoundClientSdo;
hr = pFoundClientDispatch->QueryInterface(
__uuidof(ISdo),
(void **) &pFoundClientSdo
);
if (FAILED(hr))
{
return hr;
}
//
// Get the IP address of that client
//
_variant_t vtAddress;
hr = pFoundClientSdo->GetProperty(PROPERTY_CLIENT_ADDRESS ,&vtAddress);
if (FAILED(hr))
{
return hr;
}
Argomenti correlati