C# Class Hd.QueryExtensions.OrderByTermCollection

Inheritance: System.Collections.CollectionBase
Afficher le fichier Open project: TargetProcess/Tp.HelpDesk Class Usage Examples

Méthodes publiques

Méthode Description
Add ( OrderByTerm value ) : void

Adds an instance of type OrderByTerm to the end of this OrderByTermCollection.

AddRange ( OrderByTerm items ) : void

Adds the elements of an array to the end of this OrderByTermCollection.

AddRange ( OrderByTermCollection items ) : void

Adds the elements of another OrderByTermCollection to the end of this OrderByTermCollection.

Contains ( OrderByTerm value ) : bool

Determines whether a specfic OrderByTerm value is in this OrderByTermCollection.

GetEnumerator ( ) : OrderByTermCollection.Enumerator

Returns an enumerator that can iterate through the elements of this OrderByTermCollection.

IndexOf ( OrderByTerm value ) : int

Return the zero-based index of the first occurrence of a specific value in this OrderByTermCollection

Insert ( int index, OrderByTerm value ) : void

Inserts an element into the OrderByTermCollection at the specified index

OrderByTermCollection ( ) : System

Initializes a new empty instance of the OrderByTermCollection class.

OrderByTermCollection ( OrderByTerm items ) : System

Initializes a new instance of the OrderByTermCollection class, containing elements copied from an array.

OrderByTermCollection ( OrderByTermCollection items ) : System

Initializes a new instance of the OrderByTermCollection class, containing elements copied from another instance of OrderByTermCollection

Remove ( OrderByTerm value ) : void

Removes the first occurrence of a specific OrderByTerm from this OrderByTermCollection.

this ( int index ) : OrderByTerm

Gets or sets the OrderByTerm at the given index in this OrderByTermCollection.

Method Details

Add() public méthode

Adds an instance of type OrderByTerm to the end of this OrderByTermCollection.
public Add ( OrderByTerm value ) : void
value OrderByTerm /// The OrderByTerm to be added to the end of this OrderByTermCollection. ///
Résultat void

AddRange() public méthode

Adds the elements of an array to the end of this OrderByTermCollection.
public AddRange ( OrderByTerm items ) : void
items OrderByTerm /// The array whose elements are to be added to the end of this OrderByTermCollection. ///
Résultat void

AddRange() public méthode

Adds the elements of another OrderByTermCollection to the end of this OrderByTermCollection.
public AddRange ( OrderByTermCollection items ) : void
items OrderByTermCollection /// The OrderByTermCollection whose elements are to be added to the end of this OrderByTermCollection. ///
Résultat void

Contains() public méthode

Determines whether a specfic OrderByTerm value is in this OrderByTermCollection.
public Contains ( OrderByTerm value ) : bool
value OrderByTerm /// The OrderByTerm value to locate in this OrderByTermCollection. ///
Résultat bool

GetEnumerator() public méthode

Returns an enumerator that can iterate through the elements of this OrderByTermCollection.
public GetEnumerator ( ) : OrderByTermCollection.Enumerator
Résultat OrderByTermCollection.Enumerator

IndexOf() public méthode

Return the zero-based index of the first occurrence of a specific value in this OrderByTermCollection
public IndexOf ( OrderByTerm value ) : int
value OrderByTerm /// The OrderByTerm value to locate in the OrderByTermCollection. ///
Résultat int

Insert() public méthode

Inserts an element into the OrderByTermCollection at the specified index
public Insert ( int index, OrderByTerm value ) : void
index int /// The index at which the OrderByTerm is to be inserted. ///
value OrderByTerm /// The OrderByTerm to insert. ///
Résultat void

OrderByTermCollection() public méthode

Initializes a new empty instance of the OrderByTermCollection class.
public OrderByTermCollection ( ) : System
Résultat System

OrderByTermCollection() public méthode

Initializes a new instance of the OrderByTermCollection class, containing elements copied from an array.
public OrderByTermCollection ( OrderByTerm items ) : System
items OrderByTerm /// The array whose elements are to be added to the new OrderByTermCollection. ///
Résultat System

OrderByTermCollection() public méthode

Initializes a new instance of the OrderByTermCollection class, containing elements copied from another instance of OrderByTermCollection
public OrderByTermCollection ( OrderByTermCollection items ) : System
items OrderByTermCollection /// The OrderByTermCollection whose elements are to be added to the new OrderByTermCollection. ///
Résultat System

Remove() public méthode

Removes the first occurrence of a specific OrderByTerm from this OrderByTermCollection.
public Remove ( OrderByTerm value ) : void
value OrderByTerm /// The OrderByTerm value to remove from this OrderByTermCollection. ///
Résultat void

this() public méthode

Gets or sets the OrderByTerm at the given index in this OrderByTermCollection.
public this ( int index ) : OrderByTerm
index int
Résultat OrderByTerm