C# Class Hd.QueryExtensions.WhereClauseCollection

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

Méthodes publiques

Méthode Description
Add ( WhereClause val ) : int

Adds a with the specified value to the .

AddRange ( WhereClause val ) : void

Copies the elements of an array to the end of the .

AddRange ( WhereClauseCollection val ) : void

Adds the contents of another to the end of the collection.

Contains ( WhereClause val ) : bool

Gets a value indicating whether the contains the specified .

CopyTo ( WhereClause array, int index ) : void

Copies the values to a one-dimensional instance at the specified index.

GetEnumerator ( ) : WhereClauseGroupEnumerator

Returns an enumerator that can iterate through the .

IndexOf ( WhereClause val ) : int

Returns the index of a in the .

Insert ( int index, WhereClause val ) : void

Inserts a into the at the specified index.

Remove ( WhereClause val ) : void

Removes a specific from the .

WhereClauseCollection ( ) : System

Initializes a new instance of .

WhereClauseCollection ( WhereClause val ) : System

Initializes a new instance of containing any array of objects.

WhereClauseCollection ( WhereClauseCollection val ) : System

Initializes a new instance of based on another .

this ( int index ) : WhereClause

Represents the entry at the specified index of the .

Method Details

Add() public méthode

Adds a with the specified value to the .
public Add ( WhereClause val ) : int
val WhereClause The to add.
Résultat int

AddRange() public méthode

Copies the elements of an array to the end of the .
public AddRange ( WhereClause val ) : void
val WhereClause /// An array of type containing the objects to add to the collection. ///
Résultat void

AddRange() public méthode

Adds the contents of another to the end of the collection.
public AddRange ( WhereClauseCollection val ) : void
val WhereClauseCollection /// A containing the objects to add to the collection. ///
Résultat void

Contains() public méthode

Gets a value indicating whether the contains the specified .
public Contains ( WhereClause val ) : bool
val WhereClause The to locate.
Résultat bool

CopyTo() public méthode

Copies the values to a one-dimensional instance at the specified index.
/// is multidimensional. /// -or- /// The number of elements in the is greater than /// the available space between and the end of /// . /// is . is less than 's lowbound.
public CopyTo ( WhereClause array, int index ) : void
array WhereClause The one-dimensional that is the destination of the values copied from .
index int The index in where copying begins.
Résultat void

GetEnumerator() public méthode

Returns an enumerator that can iterate through the .
public GetEnumerator ( ) : WhereClauseGroupEnumerator
Résultat WhereClauseGroupEnumerator

IndexOf() public méthode

Returns the index of a in the .
public IndexOf ( WhereClause val ) : int
val WhereClause The to locate.
Résultat int

Insert() public méthode

Inserts a into the at the specified index.
public Insert ( int index, WhereClause val ) : void
index int The zero-based index where should be inserted.
val WhereClause The to insert.
Résultat void

Remove() public méthode

Removes a specific from the .
is not found in the Collection.
public Remove ( WhereClause val ) : void
val WhereClause The to remove from the .
Résultat void

WhereClauseCollection() public méthode

Initializes a new instance of .
public WhereClauseCollection ( ) : System
Résultat System

WhereClauseCollection() public méthode

Initializes a new instance of containing any array of objects.
public WhereClauseCollection ( WhereClause val ) : System
val WhereClause /// A array of objects with which to intialize the collection ///
Résultat System

WhereClauseCollection() public méthode

Initializes a new instance of based on another .
public WhereClauseCollection ( WhereClauseCollection val ) : System
val WhereClauseCollection /// A from which the contents are copied ///
Résultat System

this() public méthode

Represents the entry at the specified index of the .
is outside the valid range of indexes for the collection.
public this ( int index ) : WhereClause
index int The zero-based index of the entry to locate in the collection.
Résultat WhereClause