IADsOU 属性方法

IADsOU 接口的属性方法获取或设置下表中列出的属性。 有关详细信息,请参阅 Interface 属性方法

属性

BusinessCategory

一个字符串,其中包含组织单位执行的常规业务功能或函数,例如“会计”。

访问类型:读/写

脚本数据类型: BSTR

// C++ method syntax
HRESULT get_BusinessCategory(
  [out] BSTR* pbstrBusinessCategory
);
HRESULT put_BusinessCategory(
  [in] BSTR bstrBusinessCategory
);

描述

包含组织单位的文本说明的字符串。

访问类型:读/写

脚本数据类型: BSTR

// C++ method syntax
HRESULT get_Description(
  [out] BSTR* pbstrDescription
);
HRESULT put_Description(
  [in] BSTR bstrDescription
);

FaxNumber

包含组织单位的 facsimile 编号的字符串。

访问类型:读/写

脚本数据类型: BSTR

// C++ method syntax
HRESULT get_FaxNumber(
  [out] BSTR* pbstrFaxNumber
);
HRESULT put_FaxNumber(
  [in] BSTR bstrFaxNumber
);

LocalityName

一个字符串,其中包含组织单位的地理区域的名称。

访问类型:读/写

脚本数据类型: BSTR

// C++ method syntax
HRESULT get_LocalityName(
  [out] BSTR* pbstrLocalityName
);
HRESULT put_LocalityName(
  [in] BSTR bstrLocalityName
);

PostalAddress

包含组织单位的邮政地址的字符串。

访问类型:读/写

脚本数据类型: BSTR

// C++ method syntax
HRESULT get_PostalAddress(
  [out] BSTR* pbstrPostalAddress
);
HRESULT put_PostalAddress(
  [in] BSTR bstrPostalAddress
);

SeeAlso

包含可能与此对象相关的其他目录对象的可分辨名称的字符串数组。

访问类型:读/写

脚本数据类型: VARIANT

// C++ method syntax
HRESULT get_SeeAlso(
  [out] VARIANT* pvSeeAlso
);
HRESULT put_SeeAlso(
  [in] VARIANT vSeeAlso
);

TelephoneNumber

包含组织单位电话号码的字符串。

访问类型:读/写

脚本数据类型: BSTR

// C++ method syntax
HRESULT get_TelephoneNumber(
  [out] BSTR* pbstrTelephoneNumber
);
HRESULT put_TelephoneNumber(
  [in] BSTR bstrTelephoneNumber
);

示例

下面的代码示例显示 容器中所有组织单位的 BusinessCategory说明 。 它假定基础目录服务支持按组织单位对目录对象进行分组。

Dim dom As IADsContainer
Dim ou As IADsOU

' Bind to the container.
Set dom = GetObject("LDAP://server1/domain1")

' Filter out all objects that are not of class "organizationalUnit".
dom.filter = Array("organizationalUnit")

' Enumerate the organizational units in the container and display  
' the BusinessCategory and Description properties of each OU.
For Each ou In dom
    MsgBox ou.BusinessCategory & ": " & ou.Description
Next

要求

要求
最低受支持的客户端
Windows Vista
最低受支持的服务器
Windows Server 2008
标头
Iads.h
DLL
Activeds.dll
IID
IID_IADsOU定义为 A2F733B8-EFFE-11CF-8ABC-00C04FD8D503

另请参阅

IADsOU

Interface 属性方法