IADsClass::Qualifiers 方法 (iads.h)
IADsClass::Qualifiers 方法是一个可选方法,它返回描述此架构类的其他限定符的 ADSI 对象的集合。
语法
HRESULT Qualifiers(
[out] IADsCollection **ppQualifiers
);
参数
[out] ppQualifiers
IADsCollection 指针变量的地址,该变量接收指向表示此架构类附加限制的 ADSI 集合对象的接口指针。
返回值
此方法支持标准返回值以及以下值。
有关详细信息和其他返回值,请参阅 ADSI 错误代码。
注解
限定符对象特定于提供程序。 如果受支持,此方法可用于获取扩展架构数据。
此方法目前不受任何 Microsoft 提供商的支持。
示例
下面的代码示例演示如何使用此方法。
Dim ads As IADs
Dim cls As IADsClass
On Error GoTo Cleanup
Set ads = GetObject("WinNT://myComputer, computer")
Set cls = GetObject(ads.Schema)
' Show the user where to find additional class data.
ListBox.additem "Additional class information can be found from:"
For Each q In cls.Qualifiers
listBox.additem q.Name
Next
Cleanup:
If (Err.Number<>0) Then
MsgBox("An error has occurred. " & Err.Number)
End If
Set ads = Nothing
Set cls = Nothing
要求
要求 | 值 |
---|---|
最低受支持的客户端 | Windows Vista |
最低受支持的服务器 | Windows Server 2008 |
目标平台 | Windows |
标头 | iads.h |
DLL | Activeds.dll |