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

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

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

Метод Описание
Add ( RssCategory value ) : void

Adds an instance of type RssCategory to the end of this RssCategoryCollection.

AddRange ( RssCategory entries ) : void

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

AddRange ( RssCategoryCollection entries ) : void

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

Contains ( RssCategory value ) : bool

Determines whether a specfic RssCategory value is in this RssCategoryCollection.

GetEnumerator ( ) : RssCategoryCollection.Enumerator

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

IndexOf ( RssCategory value ) : int

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

Insert ( int index, RssCategory value ) : void

Inserts an element into the RssCategoryCollection at the specified index

Remove ( RssCategory value ) : void

Removes the first occurrence of a specific RssCategory from this RssCategoryCollection.

RssCategoryCollection ( ) : System

Initializes a new empty instance of the RssCategoryCollection class.

RssCategoryCollection ( RssCategory entries ) : System

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

RssCategoryCollection ( RssCategoryCollection entries ) : System

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

this ( int index ) : RssCategory

Gets or sets the RssCategory at the given index in this RssCategoryCollection.

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

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

Adds an instance of type RssCategory to the end of this RssCategoryCollection.
public Add ( RssCategory value ) : void
value RssCategory /// The RssCategory to be added to the end of this RssCategoryCollection. ///
Результат void

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

Adds the elements of an array to the end of this RssCategoryCollection.
public AddRange ( RssCategory entries ) : void
entries RssCategory /// The array whose elements are to be added to the end of this RssCategoryCollection. ///
Результат void

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

Adds the elements of another RssCategoryCollection to the end of this RssCategoryCollection.
public AddRange ( RssCategoryCollection entries ) : void
entries RssCategoryCollection /// The RssCategoryCollection whose elements are to be added to the end of this RssCategoryCollection. ///
Результат void

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

Determines whether a specfic RssCategory value is in this RssCategoryCollection.
public Contains ( RssCategory value ) : bool
value RssCategory /// The RssCategory value to locate in this RssCategoryCollection. ///
Результат bool

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

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

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

Return the zero-based index of the first occurrence of a specific value in this RssCategoryCollection
public IndexOf ( RssCategory value ) : int
value RssCategory /// The RssCategory value to locate in the RssCategoryCollection. ///
Результат int

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

Inserts an element into the RssCategoryCollection at the specified index
public Insert ( int index, RssCategory value ) : void
index int /// The index at which the RssCategory is to be inserted. ///
value RssCategory /// The RssCategory to insert. ///
Результат void

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

Removes the first occurrence of a specific RssCategory from this RssCategoryCollection.
public Remove ( RssCategory value ) : void
value RssCategory /// The RssCategory value to remove from this RssCategoryCollection. ///
Результат void

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

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

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

Initializes a new instance of the RssCategoryCollection class, containing elements copied from an array.
public RssCategoryCollection ( RssCategory entries ) : System
entries RssCategory /// The array whose elements are to be added to the new RssCategoryCollection. ///
Результат System

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

Initializes a new instance of the RssCategoryCollection class, containing elements copied from another instance of RssCategoryCollection
public RssCategoryCollection ( RssCategoryCollection entries ) : System
entries RssCategoryCollection /// The RssCategoryCollection whose elements are to be added to the new RssCategoryCollection. ///
Результат System

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

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