C# Class newtelligence.DasBlog.Web.ContentFilterCollection

Inheritance: System.Collections.CollectionBase
Exibir arquivo Open project: AArnott/dasblog Class Usage Examples

Public Methods

Method 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 method

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. ///
return void

AddRange() public method

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. ///
return void

AddRange() public method

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. ///
return void

Contains() public method

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. ///
return bool

ContentFilterCollection() public method

Initializes a new empty instance of the ContentFilterCollection class.
public ContentFilterCollection ( ) : System
return System

ContentFilterCollection() public method

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. ///
return System

ContentFilterCollection() public method

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. ///
return System

GetEnumerator() public method

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

IndexOf() public method

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. ///
return int

Insert() public method

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. ///
return void

Remove() public method

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. ///
return void

this() public method

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