DirectoryAttributeCollection.Insert(Int32, DirectoryAttribute) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The Insert(Int32, DirectoryAttribute) method inserts the specified DirectoryAttribute object into the DirectoryAttributeCollection at the specified index
.
public:
void Insert(int index, System::DirectoryServices::Protocols::DirectoryAttribute ^ value);
public void Insert (int index, System.DirectoryServices.Protocols.DirectoryAttribute value);
member this.Insert : int * System.DirectoryServices.Protocols.DirectoryAttribute -> unit
Public Sub Insert (index As Integer, value As DirectoryAttribute)
Parameters
- index
- Int32
The zero-based index point, in the collection, at which to insert the DirectoryAttribute object.
- value
- DirectoryAttribute
The DirectoryAttribute object to be inserted into the collection.
Exceptions
value
is a null reference (Nothing
in Visual Basic) or value
specifies a modification operation other than Add.
index
is less than zero, or index
is greater than the number of elements in the DirectoryAttributeCollection object.