PropertyValueCollection.AddRange 方法

定义

将一组属性值追加到此集合中。

重载

AddRange(PropertyValueCollection)

PropertyValueCollection 对象的内容追加到此集合中。

AddRange(Object[])

将指定 PropertyValueCollection 对象的内容追加到此集合中。

AddRange(PropertyValueCollection)

Source:
PropertyValueCollection.cs
Source:
PropertyValueCollection.cs
Source:
PropertyValueCollection.cs

PropertyValueCollection 对象的内容追加到此集合中。

public:
 void AddRange(System::DirectoryServices::PropertyValueCollection ^ value);
public void AddRange (System.DirectoryServices.PropertyValueCollection value);
member this.AddRange : System.DirectoryServices.PropertyValueCollection -> unit
Public Sub AddRange (value As PropertyValueCollection)

参数

value
PropertyValueCollection

PropertyValueCollection 对象,包含要追加到此集合的对象。

例外

属性值为空引用(在 Visual Basic 中为 Nothing)。

适用于

AddRange(Object[])

Source:
PropertyValueCollection.cs
Source:
PropertyValueCollection.cs
Source:
PropertyValueCollection.cs

将指定 PropertyValueCollection 对象的内容追加到此集合中。

public:
 void AddRange(cli::array <System::Object ^> ^ value);
public void AddRange (object[] value);
public void AddRange (object?[] value);
member this.AddRange : obj[] -> unit
Public Sub AddRange (value As Object())

参数

value
Object[]

PropertyValueCollection 数组,包含要追加到此集合的对象。

例外

属性值为空引用(在 Visual Basic 中为 Nothing)。

适用于