C# 클래스 newtelligence.DasBlog.Web.Services.Atom10.AtomEntryCollection

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

공개 메소드들

메소드 설명
Add ( AtomEntry value ) : void

Adds an instance of type AtomEntry to the end of this AtomEntryCollection.

AddRange ( AtomEntry entries ) : void

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

AddRange ( AtomEntryCollection entries ) : void

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

AtomEntryCollection ( ) : System

Initializes a new empty instance of the AtomEntryCollection class.

AtomEntryCollection ( AtomEntry entries ) : System

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

AtomEntryCollection ( AtomEntryCollection entries ) : System

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

Contains ( AtomEntry value ) : bool

Determines whether a specfic AtomEntry value is in this AtomEntryCollection.

GetEnumerator ( ) : AtomEntryCollection.Enumerator

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

IndexOf ( AtomEntry value ) : int

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

Insert ( int index, AtomEntry value ) : void

Inserts an element into the AtomEntryCollection at the specified index

Remove ( AtomEntry value ) : void

Removes the first occurrence of a specific AtomEntry from this AtomEntryCollection.

this ( int index ) : AtomEntry

Gets or sets the AtomEntry at the given index in this AtomEntryCollection.

메소드 상세

Add() 공개 메소드

Adds an instance of type AtomEntry to the end of this AtomEntryCollection.
public Add ( AtomEntry value ) : void
value AtomEntry /// The AtomEntry to be added to the end of this AtomEntryCollection. ///
리턴 void

AddRange() 공개 메소드

Adds the elements of an array to the end of this AtomEntryCollection.
public AddRange ( AtomEntry entries ) : void
entries AtomEntry /// The array whose elements are to be added to the end of this AtomEntryCollection. ///
리턴 void

AddRange() 공개 메소드

Adds the elements of another AtomEntryCollection to the end of this AtomEntryCollection.
public AddRange ( AtomEntryCollection entries ) : void
entries AtomEntryCollection /// The AtomEntryCollection whose elements are to be added to the end of this AtomEntryCollection. ///
리턴 void

AtomEntryCollection() 공개 메소드

Initializes a new empty instance of the AtomEntryCollection class.
public AtomEntryCollection ( ) : System
리턴 System

AtomEntryCollection() 공개 메소드

Initializes a new instance of the AtomEntryCollection class, containing elements copied from an array.
public AtomEntryCollection ( AtomEntry entries ) : System
entries AtomEntry /// The array whose elements are to be added to the new AtomEntryCollection. ///
리턴 System

AtomEntryCollection() 공개 메소드

Initializes a new instance of the AtomEntryCollection class, containing elements copied from another instance of AtomEntryCollection
public AtomEntryCollection ( AtomEntryCollection entries ) : System
entries AtomEntryCollection /// The AtomEntryCollection whose elements are to be added to the new AtomEntryCollection. ///
리턴 System

Contains() 공개 메소드

Determines whether a specfic AtomEntry value is in this AtomEntryCollection.
public Contains ( AtomEntry value ) : bool
value AtomEntry /// The AtomEntry value to locate in this AtomEntryCollection. ///
리턴 bool

GetEnumerator() 공개 메소드

Returns an enumerator that can iterate through the elements of this AtomEntryCollection.
public GetEnumerator ( ) : AtomEntryCollection.Enumerator
리턴 AtomEntryCollection.Enumerator

IndexOf() 공개 메소드

Return the zero-based index of the first occurrence of a specific value in this AtomEntryCollection
public IndexOf ( AtomEntry value ) : int
value AtomEntry /// The AtomEntry value to locate in the AtomEntryCollection. ///
리턴 int

Insert() 공개 메소드

Inserts an element into the AtomEntryCollection at the specified index
public Insert ( int index, AtomEntry value ) : void
index int /// The index at which the AtomEntry is to be inserted. ///
value AtomEntry /// The AtomEntry to insert. ///
리턴 void

Remove() 공개 메소드

Removes the first occurrence of a specific AtomEntry from this AtomEntryCollection.
public Remove ( AtomEntry value ) : void
value AtomEntry /// The AtomEntry value to remove from this AtomEntryCollection. ///
리턴 void

this() 공개 메소드

Gets or sets the AtomEntry at the given index in this AtomEntryCollection.
public this ( int index ) : AtomEntry
index int
리턴 AtomEntry