C# Class newtelligence.DasBlog.Web.ContentFilterCollection

Inheritance: System.Collections.CollectionBase
Afficher le fichier Open project: AArnott/dasblog Class Usage Examples

Méthodes publiques

Méthode Description
Add ( ContentFilter value ) : void

Adds an instance of type ContentFilter to the end of this ContentFilterCollection.

AddRange ( ContentFilter items ) : void

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

AddRange ( ContentFilterCollection items ) : void

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

Contains ( ContentFilter value ) : bool

Determines whether a specfic ContentFilter value is in this ContentFilterCollection.

ContentFilterCollection ( ) : System

Initializes a new empty instance of the ContentFilterCollection class.

ContentFilterCollection ( ContentFilter items ) : System

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

ContentFilterCollection ( ContentFilterCollection items ) : System

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

GetEnumerator ( ) : Enumerator

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

IndexOf ( ContentFilter value ) : int

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

Insert ( int index, ContentFilter value ) : void

Inserts an element into the ContentFilterCollection at the specified index

Remove ( ContentFilter value ) : void

Removes the first occurrence of a specific ContentFilter from this ContentFilterCollection.

this ( int index ) : ContentFilter

Gets or sets the ContentFilter at the given index in this ContentFilterCollection.

Method Details

Add() public méthode

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

AddRange() public méthode

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

AddRange() public méthode

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

Contains() public méthode

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

ContentFilterCollection() public méthode

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

ContentFilterCollection() public méthode

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

ContentFilterCollection() public méthode

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

GetEnumerator() public méthode

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

IndexOf() public méthode

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

Insert() public méthode

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

Remove() public méthode

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

this() public méthode

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