Metodo IADs::Get (iads.h)

Il metodo IADs::Get recupera una proprietà di un determinato nome dalla cache delle proprietà. La proprietà può essere a valore singolo o multivalore. Il valore della proprietà viene rappresentato come una variante per una proprietà a valore singolo o una matrice variant (di VARIANT o byte) per una proprietà che consente più valori.

Sintassi

HRESULT Get(
  [in]  BSTR    bstrName,
  [out] VARIANT *pvProp
);

Parametri

[in] bstrName

Contiene un BSTR che specifica il nome della proprietà.

[out] pvProp

Puntatore a un valore VARIANT che riceve il valore della proprietà. Per una proprietà multivalore, pvProp è una matrice variant di VARIANT, a meno che la proprietà non sia un tipo binario. In questo secondo caso , pvProp è una matrice variant di byte (VT_U1 o VT_ARRAY). Per la proprietà che fa riferimento a un oggetto, pvProp è un puntatore VT_DISPATCH all'oggetto a cui fa riferimento.

Valore restituito

Questo metodo supporta valori restituiti standard, nonché i seguenti.

Per altre informazioni, vedere Codici di errore ADSI.

Commenti

Il metodo IADs::Get richiede al chiamante di gestire i valori delle proprietà a valore singolo e multivalore in modo diverso. Pertanto, se si conosce che la proprietà di interesse è singola o multivalore, usare il metodo IADs::Get per recuperare il valore della proprietà. L'esempio di codice seguente illustra come, come chiamante, può gestire proprietà singole e multivalore quando si chiama questo metodo.

Quando una proprietà non è inizializzata, la chiamata a questo metodo richiama una chiamata implicita al metodo IADs::GetInfo . Questo caricamento dalla directory sottostante archivia i valori delle proprietà supportate che non sono state impostate nella cache. Tutte le chiamate successive a IADs::Get gestisce solo i valori delle proprietà nella cache. Per altre informazioni sul comportamento delle chiamate implicite ed esplicite a IADs::GetInfo, vedere IADs::GetInfo.

È anche possibile usare IADs::GetEx per recuperare i valori delle proprietà dalla cache delle proprietà. Tuttavia, i valori vengono restituiti come matrice variante di variants, indipendentemente dal fatto che siano a valore singolo o multivalore. Ovvero, ADSI tenta di creare un pacchetto dei valori delle proprietà restituiti in formati di dati coerenti. Ciò consente di salvare, come chiamante, lo sforzo di convalidare i tipi di dati quando non si è certi che i dati restituiti dispongano di valori singoli o multipli.

Esempio

Nell'esempio di codice seguente viene recuperato il descrittore di sicurezza per un oggetto usando IADs::Get.

Dim x As IADs
Dim Desc As IADsSecurityDescriptor
On Error GoTo ErrTest:
 
Set x = GetObject("LDAP://CN=Administrator,CN=Users,DC=Fabrikam,DC=com")
 
' Single-valued properties.
Debug.Print "Home Phone Number is: " & x.Get("homePhone")
 
' Some property values represents other ADSI objects. 
' Consult your provider documentation.
Set Desc = x.Get("ntSecurityDescriptor")
 
' Multi-valued property, assuming that multiple values were
' assigned to the "otherHomePhone" properties. Caller must 
' enumerate all the available values.
Debug.Print "Other Phone Numbers are: "
otherNumbers = x.Get("otherHomePhone")
For Each homeNum In otherNumbers
  Debug.Print homeNum
Next
 
Exit Sub
 
ErrTest:
  Debug.Print Hex(Err.Number)
  Set x = Nothing
  Set Desc = Nothing

Nell'esempio di codice seguente viene illustrato come usare i valori delle proprietà dei dati binari usando IADs::Get e IADs::P ut.

Dim oTarget As IADs
Dim Octet(5) As Byte
Dim MultiOctet(2) As Variant
Dim i As Integer, j As Integer

On Error GoTo Cleanup
 
' Set up MultiOctetString.
For i = 0 To 2
    For j = 0 To 5
        Octet(j) = CByte(i * j)
    Next j
    MultiOctet(i) = Octet
Next i
 
' Bind to the object and set MultiOctetString.
Set oTarget=GetObject("LDAP://CN=SomeUser,CN=Users,DC=Fabrikam, DC=COM")
oTarget.Put "multiOctetString", MultiOctet
oTarget.SetInfo
 
Dim GetOctet As Variant
Dim Temp As Variant
 
' Read back and print MultiOctetString.
GetOctet = oTarget.Get("multiOctetString")
For i = LBound(GetOctet) To UBound(GetOctet)
    Temp = GetOctet(i)
    For j = LBound(Temp) To UBound(Temp)
        Debug.Print Temp(j)
    Next j
    Debug.Print "----"
Next i

Exit Sub

Cleanup:
   MsgBox("An error has occurred. " & Err.Number)
   Set oTarget = Nothing

Nell'esempio di codice seguente viene illustrato come recuperare i valori delle proprietà facoltative di un oggetto usando IAD::Get.

<HTML>
<head><title></title></head>

<body>
<%
Dim x 
 
On error resume next
Set x = GetObject("WinNT://Fabrikam/Administrator")
Response.Write "Object Name: " & x.Name & "<br>"
Response.Write "Object Class: " & x.Class & "<br>"
 
' Get optional property values of this object.
Set cls = GetObject(x.Schema)

For Each op In cls.OptionalProperties
   v = obj.Get(op)
   if err.Number = 0 then
       Response.Write "Optional Property: " & op & "=" & v & "<br>"
   end if
Next
%>

</body>
</html>

L'esempio di codice seguente legge gli attributi con valori singoli e multipli usando IADs::Get.

HRESULT hr;
IADs *pUsr=NULL;
 
CoInitialize(NULL);
 
///////////////////////////////
// Bind to a directory object.
///////////////////////////////
hr = ADsGetObject(L"WinNT://Fabrikam/Administrator,user", IID_IADs, (void**) &pUsr );
if ( !SUCCEEDED(hr) ) { return hr; }
 
//////////////////////////////////
// Get a single-valued attribute.
//////////////////////////////////
VARIANT var;
VariantInit(&var);
 
hr = pUsr->Get(CComBSTR("FullName"), &var );
if ( SUCCEEDED(hr) )
{
    printf("FullName: %S\n", V_BSTR(&var) );
    VariantClear(&var);
}
 
if ( pUsr )
{
    pUsr->Release();
}
 
///////////////////////////////////////////////////////
// Get a multi-valued attribute from a service object.
///////////////////////////////////////////////////////
IADs *pSvc = NULL;
 
hr = ADsGetObject(L"WinNT://Fabrikam/Account/Browser,service", IID_IADs, (void**) &pSvc );
if ( !SUCCEEDED(hr) )
{
    return hr;
}
 
hr = pSvc->Get(CComBSTR("Dependencies"), &var );
if ( SUCCEEDED(hr) )
{
    LONG lstart, lend;
    SAFEARRAY *sa = V_ARRAY( &var );
    VARIANT varItem;
 
    // Get the lower and upper bound.
    hr = SafeArrayGetLBound( sa, 1, &lstart );
    hr = SafeArrayGetUBound( sa, 1, &lend );
 
    // Iterate and print the content.
    VariantInit(&varItem);
    printf("Getting service dependencies using IADs :\n");
    for ( long idx=lstart; idx <= lend; idx++ )
    {
        hr = SafeArrayGetElement( sa, &idx, &varItem );
        printf("%S ", V_BSTR(&varItem));
        VariantClear(&varItem);
    }
    printf("\n");
 
    VariantClear(&var);
}
 
// Cleanup.
if ( pSvc )
{
    pSvc->Release();
}

Requisiti

   
Client minimo supportato Windows Vista
Server minimo supportato Windows Server 2008
Piattaforma di destinazione Windows
Intestazione iads.h
DLL Activeds.dll

Vedi anche

ID

ID::GetEx

ID::GetInfo

ID::P ut

ID::P utEx

Cache delle proprietà