C# Class newtelligence.DasBlog.Web.Services.Rsd.RssServiceCollection

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

Méthodes publiques

Méthode Description
Add ( RsdService value ) : void

Adds an instance of type RsdService to the end of this RssServiceCollection.

AddRange ( RsdService items ) : void

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

AddRange ( RssServiceCollection items ) : void

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

Contains ( RsdService value ) : bool

Determines whether a specfic RsdService value is in this RssServiceCollection.

GetEnumerator ( ) : RssServiceCollection.Enumerator

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

IndexOf ( RsdService value ) : int

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

Insert ( int index, RsdService value ) : void

Inserts an element into the RssServiceCollection at the specified index

Remove ( RsdService value ) : void

Removes the first occurrence of a specific RsdService from this RssServiceCollection.

RssServiceCollection ( ) : System

Initializes a new empty instance of the RssServiceCollection class.

RssServiceCollection ( RsdService items ) : System

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

RssServiceCollection ( RssServiceCollection items ) : System

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

this ( int index ) : RsdService

Gets or sets the RsdService at the given index in this RssServiceCollection.

Method Details

Add() public méthode

Adds an instance of type RsdService to the end of this RssServiceCollection.
public Add ( RsdService value ) : void
value RsdService /// The RsdService to be added to the end of this RssServiceCollection. ///
Résultat void

AddRange() public méthode

Adds the elements of an array to the end of this RssServiceCollection.
public AddRange ( RsdService items ) : void
items RsdService /// The array whose elements are to be added to the end of this RssServiceCollection. ///
Résultat void

AddRange() public méthode

Adds the elements of another RssServiceCollection to the end of this RssServiceCollection.
public AddRange ( RssServiceCollection items ) : void
items RssServiceCollection /// The RssServiceCollection whose elements are to be added to the end of this RssServiceCollection. ///
Résultat void

Contains() public méthode

Determines whether a specfic RsdService value is in this RssServiceCollection.
public Contains ( RsdService value ) : bool
value RsdService /// The RsdService value to locate in this RssServiceCollection. ///
Résultat bool

GetEnumerator() public méthode

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

IndexOf() public méthode

Return the zero-based index of the first occurrence of a specific value in this RssServiceCollection
public IndexOf ( RsdService value ) : int
value RsdService /// The RsdService value to locate in the RssServiceCollection. ///
Résultat int

Insert() public méthode

Inserts an element into the RssServiceCollection at the specified index
public Insert ( int index, RsdService value ) : void
index int /// The index at which the RsdService is to be inserted. ///
value RsdService /// The RsdService to insert. ///
Résultat void

Remove() public méthode

Removes the first occurrence of a specific RsdService from this RssServiceCollection.
public Remove ( RsdService value ) : void
value RsdService /// The RsdService value to remove from this RssServiceCollection. ///
Résultat void

RssServiceCollection() public méthode

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

RssServiceCollection() public méthode

Initializes a new instance of the RssServiceCollection class, containing elements copied from an array.
public RssServiceCollection ( RsdService items ) : System
items RsdService /// The array whose elements are to be added to the new RssServiceCollection. ///
Résultat System

RssServiceCollection() public méthode

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

this() public méthode

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