Boolean 属性类型

Active Directory 域服务架构 Boolean 语法类型用于诸如 isDefunct 特性和 isDeleted 特性之类的属性。System.DirectoryServices 将此语法类型视为 Boolean 值。在 ADSI 中,此属性类型被标识为 ADSTYPE_BOOLEAN。有关 ADSTYPE_BOOLEAN 的更多信息,请参见位于 https://go.microsoft.com/fwlink/?LinkID=27252 上的 MSDN Library 中的“ADSTYPEENUM”枚举文档(可能为英文网页)。有关 Boolean 语法、isDefunct 属性或 isDeleted 属性的更多信息,请参见位于 https://go.microsoft.com/fwlink/?LinkID=27252 上的 MSDN Library 中的“Boolean 语法”、“Is-Defunct 属性”或“Is-Deleted 属性”(可能为英文网页)。

下面的示例说明如何读取包含布尔值的属性。

Console.WriteLine(usr.Properties("isDeleted").Value)
Console.WriteLine(usr.Properties["isDeleted"].Value);

下面的代码示例说明如何将单值 Boolean 属性设置为 true

usr.Properties("isDeleted").Value = True
usr.CommitChanges()
usr.Properties["isDeleted"].Value = true;
usr.CommitChanges();

下面的示例说明如何将 true 值添加到多值 Boolean 属性。

usr.Properties("isDeleted").Add(True)
usr.CommitChanges()
usr.Properties["isDeleted"].Add(true);
usr.CommitChanges();

另请参见

参考

System.DirectoryServices
Boolean

概念

属性类型

Send comments about this topic to Microsoft.

版权所有 (C) 2007 Microsoft Corporation。保留所有权利。