C# Класс newtelligence.DasBlog.Web.Services.Rss20.RssItemCollection

A collection of elements of type RssItem
Наследование: System.Collections.CollectionBase
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Описание методов

Add() публичный Метод

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. ///
Результат void

AddRange() публичный Метод

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. ///
Результат void

AddRange() публичный Метод

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. ///
Результат void

Contains() публичный Метод

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. ///
Результат bool

GetEnumerator() публичный Метод

Returns an enumerator that can iterate through the elements of this RssItemCollection.
public GetEnumerator ( ) : RssItemCollection.Enumerator
Результат RssItemCollection.Enumerator

IndexOf() публичный Метод

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. ///
Результат int

Insert() публичный Метод

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. ///
Результат void

Remove() публичный Метод

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. ///
Результат void

RssItemCollection() публичный Метод

Initializes a new empty instance of the RssItemCollection class.
public RssItemCollection ( ) : System
Результат System

RssItemCollection() публичный Метод

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. ///
Результат System

RssItemCollection() публичный Метод

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. ///
Результат System

this() публичный Метод

Gets or sets the RssItem at the given index in this RssItemCollection.
public this ( int index ) : RssItem
index int
Результат RssItem