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

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

Public Methods

Method Description
Add ( RssItem value ) : void

Adds an instance of type RssItem to the end of this RssItemCollection.

AddRange ( RssItem items ) : void

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

AddRange ( RssItemCollection items ) : void

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

Contains ( RssItem value ) : bool

Determines whether a specfic RssItem value is in this RssItemCollection.

GetEnumerator ( ) : RssItemCollection.Enumerator

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

IndexOf ( RssItem value ) : int

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

Insert ( int index, RssItem value ) : void

Inserts an element into the RssItemCollection at the specified index

Remove ( RssItem value ) : void

Removes the first occurrence of a specific RssItem from this RssItemCollection.

RssItemCollection ( ) : System

Initializes a new empty instance of the RssItemCollection class.

RssItemCollection ( RssItem items ) : System

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

RssItemCollection ( RssItemCollection items ) : System

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

this ( int index ) : RssItem

Gets or sets the RssItem at the given index in this RssItemCollection.

Method Details

Add() public method

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

AddRange() public method

Adds the elements of an array to the end of this RssItemCollection.
public AddRange ( RssItem items ) : void
items RssItem /// The array whose elements are to be added to the end of this RssItemCollection. ///
return void

AddRange() public method

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

Contains() public method

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

GetEnumerator() public method

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

IndexOf() public method

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

Insert() public method

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

Remove() public method

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

RssItemCollection() public method

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

RssItemCollection() public method

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

RssItemCollection() public method

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

this() public method

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