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

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

공개 메소드들

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

Adds an instance of type AtomContent to the end of this AtomContentCollection.

AddRange ( AtomContent content ) : void

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

AddRange ( AtomContentCollection content ) : void

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

AtomContentCollection ( ) : System

Initializes a new empty instance of the AtomContentCollection class.

AtomContentCollection ( AtomContent content ) : System

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

AtomContentCollection ( AtomContentCollection content ) : System

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

Contains ( AtomContent value ) : bool

Determines whether a specfic AtomContent value is in this AtomContentCollection.

GetEnumerator ( ) : AtomContentCollection.Enumerator

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

IndexOf ( AtomContent value ) : int

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

Insert ( int index, AtomContent value ) : void

Inserts an element into the AtomContentCollection at the specified index

Remove ( AtomContent value ) : void

Removes the first occurrence of a specific AtomContent from this AtomContentCollection.

this ( int index ) : AtomContent

Gets or sets the AtomContent at the given index in this AtomContentCollection.

메소드 상세

Add() 공개 메소드

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

AddRange() 공개 메소드

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

AddRange() 공개 메소드

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

AtomContentCollection() 공개 메소드

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

AtomContentCollection() 공개 메소드

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

AtomContentCollection() 공개 메소드

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

Contains() 공개 메소드

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

GetEnumerator() 공개 메소드

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

IndexOf() 공개 메소드

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

Insert() 공개 메소드

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

Remove() 공개 메소드

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

this() 공개 메소드

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