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

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

공개 메소드들

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

Adds an instance of type AtomCategory to the end of this AtomCategoryCollection.

AddRange ( AtomCategory entries ) : void

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

AddRange ( AtomCategoryCollection entries ) : void

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

AtomCategoryCollection ( ) : System

Initializes a new empty instance of the AtomCategoryCollection class.

AtomCategoryCollection ( AtomCategory entries ) : System

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

AtomCategoryCollection ( AtomCategoryCollection entries ) : System

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

Contains ( AtomCategory value ) : bool

Determines whether a specfic AtomCategory value is in this AtomCategoryCollection.

GetEnumerator ( ) : AtomCategoryCollection.Enumerator

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

IndexOf ( AtomCategory value ) : int

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

Insert ( int index, AtomCategory value ) : void

Inserts an element into the AtomCategoryCollection at the specified index

Remove ( AtomCategory value ) : void

Removes the first occurrence of a specific AtomCategory from this AtomCategoryCollection.

this ( int index ) : AtomCategory

Gets or sets the AtomCategory at the given index in this AtomCategoryCollection.

메소드 상세

Add() 공개 메소드

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

AddRange() 공개 메소드

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

AddRange() 공개 메소드

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

AtomCategoryCollection() 공개 메소드

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

AtomCategoryCollection() 공개 메소드

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

AtomCategoryCollection() 공개 메소드

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

Contains() 공개 메소드

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

GetEnumerator() 공개 메소드

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

IndexOf() 공개 메소드

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

Insert() 공개 메소드

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

Remove() 공개 메소드

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

this() 공개 메소드

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