Class XmlSelectorCollection
A collection that stores Xml
Inheritance
Inherited Members
Namespace: Telerik.WinControls
Assembly: Telerik.WinControls.dll
Syntax
public class XmlSelectorCollection : CollectionBase, IList, ICollection, IEnumerable
Constructors
XmlSelectorCollection()
XmlSelectorCollection(Int32)
Initializes a new instance of Xml
Declaration
public XmlSelectorCollection(int capacity)
Parameters
System.
|
XmlSelectorCollection(XmlElementSelector[])
Initializes a new instance of Xml
Declaration
public XmlSelectorCollection(XmlElementSelector[] value)
Parameters
Xml A array of Xml |
XmlSelectorCollection(XmlSelectorCollection)
Initializes a new instance of Xml
Declaration
public XmlSelectorCollection(XmlSelectorCollection value)
Parameters
Xml A Xml |
Properties
Item[Int32]
Represents the entry at the specified index of the Xml
Declaration
public XmlElementSelector this[int index] { get; set; }
Parameters
System. The zero-based index of the entry to locate in the collection. |
Property Value
Xml The entry at the specified index of the collection. |
Exceptions
System.
|
Methods
Add(XmlElementSelector)
Adds a Xml
Declaration
public int Add(XmlElementSelector value)
Parameters
Xml The Xml |
Returns
System. The index at which the new element was inserted. |
AddRange(XmlElementSelector[])
Copies the elements of an array to the end of the Xml
Declaration
public void AddRange(XmlElementSelector[] value)
Parameters
Xml An array of type Xml |
AddRange(XmlSelectorCollection)
Adds the contents of another Xml
Declaration
public void AddRange(XmlSelectorCollection value)
Parameters
Xml A Xml |
Contains(XmlElementSelector)
Gets a value indicating whether the
Xml
Declaration
public bool Contains(XmlElementSelector value)
Parameters
Xml The Xml |
Returns
System. true if the Xml |
CopyTo(XmlElementSelector[], Int32)
Copies the Xml
Declaration
public void CopyTo(XmlElementSelector[] array, int index)
Parameters
Xml The one-dimensional System. |
System. The index in |
Exceptions
System.
-or- The number of elements in the Xml |
System.
|
System.
|
GetEnumerator()
Returns an enumerator that can iterate through
the Xml
Declaration
public XmlSelectorCollection.XmlSelectorEnumerator GetEnumerator()
Returns
IndexOf(XmlElementSelector)
Returns the index of a Xml
Declaration
public int IndexOf(XmlElementSelector value)
Parameters
Xml The Xml |
Returns
System. The index of the Xml |
Insert(Int32, XmlElementSelector)
Inserts a Xml
Declaration
public void Insert(int index, XmlElementSelector value)
Parameters
System. The zero-based index where |
Xml The Xml |
Remove(XmlElementSelector)
Removes a specific Xml
Declaration
public void Remove(XmlElementSelector value)
Parameters
Xml The Xml |
Exceptions
System.
|