ActiveDirectorySiteCollection.AddRange Method

Definition

Appends a range of items to this collection.

Overloads

AddRange(ActiveDirectorySite[])

Appends the contents of the specified ActiveDirectorySite array to this collection.

AddRange(ActiveDirectorySiteCollection)

Appends the contents of the specified ActiveDirectorySiteCollection object to this collection.

AddRange(ActiveDirectorySite[])

Source:
ActiveDirectorySiteCollection.cs
Source:
ActiveDirectorySiteCollection.cs
Source:
ActiveDirectorySiteCollection.cs

Appends the contents of the specified ActiveDirectorySite array to this collection.

public:
 void AddRange(cli::array <System::DirectoryServices::ActiveDirectory::ActiveDirectorySite ^> ^ sites);
public void AddRange (System.DirectoryServices.ActiveDirectory.ActiveDirectorySite[] sites);
member this.AddRange : System.DirectoryServices.ActiveDirectory.ActiveDirectorySite[] -> unit
Public Sub AddRange (sites As ActiveDirectorySite())

Parameters

sites
ActiveDirectorySite[]

The ActiveDirectorySite array that contains the objects to append to this collection.

Exceptions

A call to the underlying directory service resulted in an error.

The object already exists in the collection.

sites is null.

The ActiveDirectorySite object has not yet been saved in the Active Directory Domain Services store.

See also

Applies to

AddRange(ActiveDirectorySiteCollection)

Source:
ActiveDirectorySiteCollection.cs
Source:
ActiveDirectorySiteCollection.cs
Source:
ActiveDirectorySiteCollection.cs

Appends the contents of the specified ActiveDirectorySiteCollection object to this collection.

public:
 void AddRange(System::DirectoryServices::ActiveDirectory::ActiveDirectorySiteCollection ^ sites);
public void AddRange (System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection sites);
member this.AddRange : System.DirectoryServices.ActiveDirectory.ActiveDirectorySiteCollection -> unit
Public Sub AddRange (sites As ActiveDirectorySiteCollection)

Parameters

sites
ActiveDirectorySiteCollection

The ActiveDirectorySiteCollection object that contains the objects to append to this collection.

Exceptions

A call to the underlying directory service resulted in an error.

The object already exists in this collection.

sites is null.

The ActiveDirectorySite object has not yet been saved in the Active Directory Domain Services store.

See also

Applies to