Condividi tramite


Associazione a padre di un oggetto

In ADSI ogni oggetto directory è rappresentato da un oggetto COM ADSI che espone l'interfaccia IADs . Per ottenere il contenitore padre di un oggetto, utilizzare il metodo IADs::get_Parent per ottenere l'ADsPath dell'oggetto padre, quindi eseguire l'associazione all'ADsPath dell'elemento padre.

Nell'esempio di codice C++ seguente viene illustrato come ottenere l'elemento padre di un oggetto .

HRESULT GetParentObject(IADs *pObject,   // Pointer to the object whose parent to bind to.
                        IADs **ppParent) // Return a pointer to the parent object.
{
    if(NULL == ppParent)
    {
        return E_INVALIDARG;
    }
 
    *ppParent = NULL;

    if(NULL == pObject)
    {
        return E_INVALIDARG;
    }
 
    HRESULT hr;
    BSTR bstr;

    // Get the ADsPath of the parent.
    hr = pObject->get_Parent(&bstr);
    if(SUCCEEDED(hr))
    {
        // Bind to the parent.
        hr = ADsOpenObject(bstr,
             NULL,
             NULL,
             ADS_SECURE_AUTHENTICATION,
             IID_IADs,
             (void**)ppParent);

        SysFreeString(bstr);
    }

    return hr;
}