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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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