The SimpleElement..::..SimpleElementList type exposes the following members.

Methods

  NameDescription
Public methodAdd
Adds an object to the end of the ArrayList.
(Overrides ArrayList..::..Add(Object).)
Public methodAddRange
Adds the elements of an ICollection to the end of the ArrayList.
(Overrides ArrayList..::..AddRange(ICollection).)
Public methodBinarySearch(Object)
Searches the entire sorted ArrayList for an element using the default comparer and returns the zero-based index of the element.
(Inherited from ArrayList.)
Public methodBinarySearch(Object, IComparer)
Searches the entire sorted ArrayList for an element using the specified comparer and returns the zero-based index of the element.
(Inherited from ArrayList.)
Public methodBinarySearch(Int32, Int32, Object, IComparer)
Searches a range of elements in the sorted ArrayList for an element using the specified comparer and returns the zero-based index of the element.
(Inherited from ArrayList.)
Protected methodCheckElement
Validates the passed IXmlElement, copying the element into a new valid element if necessary.
Protected methodCheckMutable
Validates that the parent element is mutable, otherwise throws an InvalidOperationException.
Public methodClear
Removes all elements from the ArrayList.
(Overrides ArrayList..::..Clear()()()().)
Public methodClone
Creates a shallow copy of the ArrayList.
(Inherited from ArrayList.)
Public methodContains
Determines whether an element is in the ArrayList.
(Inherited from ArrayList.)
Public methodCopyTo(Array)
Copies the entire ArrayList to a compatible one-dimensional Array, starting at the beginning of the target array.
(Inherited from ArrayList.)
Public methodCopyTo(Array, Int32)
Copies the entire ArrayList to a compatible one-dimensional Array, starting at the specified index of the target array.
(Inherited from ArrayList.)
Public methodCopyTo(Int32, Array, Int32, Int32)
Copies a range of elements from the ArrayList to a compatible one-dimensional Array, starting at the specified index of the target array.
(Inherited from ArrayList.)
Public methodEquals
Compare this list with another for equality.
(Overrides Object..::..Equals(Object).)
Protected methodFinalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetEnumerator()()()()
Returns an enumerator for the entire ArrayList.
(Inherited from ArrayList.)
Public methodGetEnumerator(Int32, Int32)
Returns an enumerator for a range of elements in the ArrayList.
(Inherited from ArrayList.)
Public methodGetHashCode
Provide a hash value for this SimpleElementList.
(Overrides Object..::..GetHashCode()()()().)
Public methodGetRange
Returns an ArrayList which represents a subset of the elements in the source ArrayList.
(Inherited from ArrayList.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIndexOf(Object)
Searches for the specified Object and returns the zero-based index of the first occurrence within the entire ArrayList.
(Inherited from ArrayList.)
Public methodIndexOf(Object, Int32)
Searches for the specified Object and returns the zero-based index of the first occurrence within the range of elements in the ArrayList that extends from the specified index to the last element.
(Inherited from ArrayList.)
Public methodIndexOf(Object, Int32, Int32)
Searches for the specified Object and returns the zero-based index of the first occurrence within the range of elements in the ArrayList that starts at the specified index and contains the specified number of elements.
(Inherited from ArrayList.)
Public methodInsert
Inserts an element into the ArrayList at the specified index.
(Overrides ArrayList..::..Insert(Int32, Object).)
Public methodInsertRange
Inserts the elements of a collection into the ArrayList at the specified index.
(Overrides ArrayList..::..InsertRange(Int32, ICollection).)
Public methodLastIndexOf(Object)
Searches for the specified Object and returns the zero-based index of the last occurrence within the entire ArrayList.
(Inherited from ArrayList.)
Public methodLastIndexOf(Object, Int32)
Searches for the specified Object and returns the zero-based index of the last occurrence within the range of elements in the ArrayList that extends from the first element to the specified index.
(Inherited from ArrayList.)
Public methodLastIndexOf(Object, Int32, Int32)
Searches for the specified Object and returns the zero-based index of the last occurrence within the range of elements in the ArrayList that contains the specified number of elements and ends at the specified index.
(Inherited from ArrayList.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodRemove
Removes the first occurrence of a specific object from the ArrayList.
(Overrides ArrayList..::..Remove(Object).)
Public methodRemoveAt
Removes the element at the specified index of the ArrayList.
(Overrides ArrayList..::..RemoveAt(Int32).)
Public methodRemoveRange
Removes a range of elements from the ArrayList.
(Overrides ArrayList..::..RemoveRange(Int32, Int32).)
Public methodReverse()()()()
Reverses the order of the elements in the entire ArrayList.
(Overrides ArrayList..::..Reverse()()()().)
Public methodReverse(Int32, Int32)
Reverses the order of the elements in the specified range.
(Overrides ArrayList..::..Reverse(Int32, Int32).)
Public methodSetRange
Copies the elements of a collection over a range of elements in the ArrayList.
(Overrides ArrayList..::..SetRange(Int32, ICollection).)
Public methodSort()()()()
Sorts the elements in the entire ArrayList using the IComparable implementation of each element.
(Overrides ArrayList..::..Sort()()()().)
Public methodSort(IComparer)
Sorts the elements in the entire ArrayList using the specified comparer.
(Overrides ArrayList..::..Sort(IComparer).)
Public methodSort(Int32, Int32, IComparer)
Sorts the elements in a range of elements in ArrayList using the specified comparer.
(Overrides ArrayList..::..Sort(Int32, Int32, IComparer).)
Public methodToArray()()()()
Copies the elements of the ArrayList to a new Object array.
(Inherited from ArrayList.)
Public methodToArray(Type)
Copies the elements of the ArrayList to a new array of the specified element type.
(Inherited from ArrayList.)
Public methodToString
Returns a String that represents the current Object.
(Inherited from Object.)
Public methodTrimToSize
Sets the capacity to the actual number of elements in the ArrayList.
(Inherited from ArrayList.)

See Also