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

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

공개 메소드들

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