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

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

Public Methods

Method Description
Add ( RssChannel value ) : void

Adds an instance of type RssChannel to the end of this RssChannelCollection.

AddRange ( RssChannel items ) : void

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

AddRange ( RssChannelCollection items ) : void

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

Contains ( RssChannel value ) : bool

Determines whether a specfic RssChannel value is in this RssChannelCollection.

GetEnumerator ( ) : RssChannelCollection.Enumerator

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

IndexOf ( RssChannel value ) : int

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

Insert ( int index, RssChannel value ) : void

Inserts an element into the RssChannelCollection at the specified index

Remove ( RssChannel value ) : void

Removes the first occurrence of a specific RssChannel from this RssChannelCollection.

RssChannelCollection ( ) : System

Initializes a new empty instance of the RssChannelCollection class.

RssChannelCollection ( RssChannel items ) : System

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

RssChannelCollection ( RssChannelCollection items ) : System

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

this ( int index ) : RssChannel

Gets or sets the RssChannel at the given index in this RssChannelCollection.

Method Details

Add() public method

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

AddRange() public method

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

AddRange() public method

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

Contains() public method

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

GetEnumerator() public method

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

IndexOf() public method

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

Insert() public method

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

Remove() public method

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

RssChannelCollection() public method

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

RssChannelCollection() public method

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

RssChannelCollection() public method

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

this() public method

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