Method | Description | |
---|---|---|
Add ( |
Adds an instance of type OrderByTerm to the end of this OrderByTermCollection.
|
|
AddRange ( |
Adds the elements of an array to the end of this OrderByTermCollection.
|
|
AddRange ( |
Adds the elements of another OrderByTermCollection to the end of this OrderByTermCollection.
|
|
Contains ( |
Determines whether a specfic OrderByTerm value is in this OrderByTermCollection.
|
|
GetEnumerator ( ) : |
Returns an enumerator that can iterate through the elements of this OrderByTermCollection.
|
|
IndexOf ( |
Return the zero-based index of the first occurrence of a specific value in this OrderByTermCollection
|
|
Insert ( int index, |
Inserts an element into the OrderByTermCollection at the specified index
|
|
OrderByTermCollection ( ) : System |
Initializes a new empty instance of the OrderByTermCollection class.
|
|
OrderByTermCollection ( |
Initializes a new instance of the OrderByTermCollection class, containing elements copied from an array.
|
|
OrderByTermCollection ( |
Initializes a new instance of the OrderByTermCollection class, containing elements copied from another instance of OrderByTermCollection
|
|
Remove ( |
Removes the first occurrence of a specific OrderByTerm from this OrderByTermCollection.
|
|
this ( int index ) : |
Gets or sets the OrderByTerm at the given index in this OrderByTermCollection.
|
public Add ( |
||
value | /// The OrderByTerm to be added to the end of this OrderByTermCollection. /// | |
return | void |
public AddRange ( |
||
items | /// The array whose elements are to be added to the end of this OrderByTermCollection. /// | |
return | void |
public AddRange ( |
||
items | /// The OrderByTermCollection whose elements are to be added to the end of this OrderByTermCollection. /// | |
return | void |
public Contains ( |
||
value | /// The OrderByTerm value to locate in this OrderByTermCollection. /// | |
return | bool |
public GetEnumerator ( ) : |
||
return |
public IndexOf ( |
||
value | /// The OrderByTerm value to locate in the OrderByTermCollection. /// | |
return | int |
public Insert ( int index, |
||
index | int | /// The index at which the OrderByTerm is to be inserted. /// |
value | /// The OrderByTerm to insert. /// | |
return | void |
public OrderByTermCollection ( |
||
items | /// The array whose elements are to be added to the new OrderByTermCollection. /// | |
return | System |
public OrderByTermCollection ( |
||
items | /// The OrderByTermCollection whose elements are to be added to the new OrderByTermCollection. /// | |
return | System |
public Remove ( |
||
value | /// The OrderByTerm value to remove from this OrderByTermCollection. /// | |
return | void |