C# 클래스 newtelligence.DasBlog.Web.Services.Rss20.RssCategoryCollection

A collection of elements of type RssCategory
상속: System.Collections.CollectionBase
파일 보기 프로젝트 열기: AArnott/dasblog 1 사용 예제들

공개 메소드들

메소드 설명
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