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

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

Public Methods

Method 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 method

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. ///
return void

AddRange() public method

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. ///
return void

AddRange() public method

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. ///
return void

Contains() public method

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. ///
return bool

GetEnumerator() public method

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

IndexOf() public method

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. ///
return int

Insert() public method

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. ///
return void

Remove() public method

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. ///
return void

RssServiceCollection() public method

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

RssServiceCollection() public method

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. ///
return System

RssServiceCollection() public method

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. ///
return System

this() public method

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