C# Class newtelligence.DasBlog.Web.Services.Rss20.RssCategoryCollection

A collection of elements of type RssCategory
Inheritance: System.Collections.CollectionBase
Show file Open project: AArnott/dasblog Class Usage Examples

Public Methods

Method Description
Add ( RssCategory value ) : void

Adds an instance of type RssCategory to the end of this RssCategoryCollection.

AddRange ( RssCategory entries ) : void

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

AddRange ( RssCategoryCollection entries ) : void

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

Contains ( RssCategory value ) : bool

Determines whether a specfic RssCategory value is in this RssCategoryCollection.

GetEnumerator ( ) : RssCategoryCollection.Enumerator

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

IndexOf ( RssCategory value ) : int

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

Insert ( int index, RssCategory value ) : void

Inserts an element into the RssCategoryCollection at the specified index

Remove ( RssCategory value ) : void

Removes the first occurrence of a specific RssCategory from this RssCategoryCollection.

RssCategoryCollection ( ) : System

Initializes a new empty instance of the RssCategoryCollection class.

RssCategoryCollection ( RssCategory entries ) : System

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

RssCategoryCollection ( RssCategoryCollection entries ) : System

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

this ( int index ) : RssCategory

Gets or sets the RssCategory at the given index in this RssCategoryCollection.

Method Details

Add() public method

Adds an instance of type RssCategory to the end of this RssCategoryCollection.
public Add ( RssCategory value ) : void
value RssCategory /// The RssCategory to be added to the end of this RssCategoryCollection. ///
return void

AddRange() public method

Adds the elements of an array to the end of this RssCategoryCollection.
public AddRange ( RssCategory entries ) : void
entries RssCategory /// The array whose elements are to be added to the end of this RssCategoryCollection. ///
return void

AddRange() public method

Adds the elements of another RssCategoryCollection to the end of this RssCategoryCollection.
public AddRange ( RssCategoryCollection entries ) : void
entries RssCategoryCollection /// The RssCategoryCollection whose elements are to be added to the end of this RssCategoryCollection. ///
return void

Contains() public method

Determines whether a specfic RssCategory value is in this RssCategoryCollection.
public Contains ( RssCategory value ) : bool
value RssCategory /// The RssCategory value to locate in this RssCategoryCollection. ///
return bool

GetEnumerator() public method

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

IndexOf() public method

Return the zero-based index of the first occurrence of a specific value in this RssCategoryCollection
public IndexOf ( RssCategory value ) : int
value RssCategory /// The RssCategory value to locate in the RssCategoryCollection. ///
return int

Insert() public method

Inserts an element into the RssCategoryCollection at the specified index
public Insert ( int index, RssCategory value ) : void
index int /// The index at which the RssCategory is to be inserted. ///
value RssCategory /// The RssCategory to insert. ///
return void

Remove() public method

Removes the first occurrence of a specific RssCategory from this RssCategoryCollection.
public Remove ( RssCategory value ) : void
value RssCategory /// The RssCategory value to remove from this RssCategoryCollection. ///
return void

RssCategoryCollection() public method

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

RssCategoryCollection() public method

Initializes a new instance of the RssCategoryCollection class, containing elements copied from an array.
public RssCategoryCollection ( RssCategory entries ) : System
entries RssCategory /// The array whose elements are to be added to the new RssCategoryCollection. ///
return System

RssCategoryCollection() public method

Initializes a new instance of the RssCategoryCollection class, containing elements copied from another instance of RssCategoryCollection
public RssCategoryCollection ( RssCategoryCollection entries ) : System
entries RssCategoryCollection /// The RssCategoryCollection whose elements are to be added to the new RssCategoryCollection. ///
return System

this() public method

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