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

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

Méthodes publiques

Méthode 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 méthode

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. ///
Résultat void

AddRange() public méthode

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. ///
Résultat void

AddRange() public méthode

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. ///
Résultat void

Contains() public méthode

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. ///
Résultat bool

GetEnumerator() public méthode

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

IndexOf() public méthode

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. ///
Résultat int

Insert() public méthode

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. ///
Résultat void

Remove() public méthode

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. ///
Résultat void

RssItemCollection() public méthode

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

RssItemCollection() public méthode

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. ///
Résultat System

RssItemCollection() public méthode

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. ///
Résultat System

this() public méthode

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