ActiveDirectorySchemaClassCollection.AddRange Method

Definition

Appends a range of items to this collection.

Overloads

AddRange(ActiveDirectorySchemaClass[])

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

AddRange(ActiveDirectorySchemaClassCollection)

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

AddRange(ReadOnlyActiveDirectorySchemaClassCollection)

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

AddRange(ActiveDirectorySchemaClass[])

Source:
ActiveDirectorySchemaClassCollection.cs
Source:
ActiveDirectorySchemaClassCollection.cs
Source:
ActiveDirectorySchemaClassCollection.cs

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

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

Parameters

schemaClasses
ActiveDirectorySchemaClass[]

The ActiveDirectorySchemaClass 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 this collection.

schemaClasses is null.

The ActiveDirectorySchemaClass object has not yet been saved to the underlying directory store.

See also

Applies to

AddRange(ActiveDirectorySchemaClassCollection)

Source:
ActiveDirectorySchemaClassCollection.cs
Source:
ActiveDirectorySchemaClassCollection.cs
Source:
ActiveDirectorySchemaClassCollection.cs

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

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

Parameters

schemaClasses
ActiveDirectorySchemaClassCollection

The ActiveDirectorySchemaClassCollection 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.

schemaClasses is null.

The ActiveDirectorySchemaClass object has not yet been saved to the underlying directory store.

See also

Applies to

AddRange(ReadOnlyActiveDirectorySchemaClassCollection)

Source:
ActiveDirectorySchemaClassCollection.cs
Source:
ActiveDirectorySchemaClassCollection.cs
Source:
ActiveDirectorySchemaClassCollection.cs

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

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

Parameters

schemaClasses
ReadOnlyActiveDirectorySchemaClassCollection

The ReadOnlyActiveDirectorySchemaClassCollection 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.

schemaClasses is null.

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

See also

Applies to