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

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

공개 메소드들

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

Adds an instance of type AtomLink to the end of this AtomLinkCollection.

AddRange ( AtomLink participants ) : void

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

AddRange ( AtomLinkCollection participants ) : void

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

AtomLinkCollection ( ) : System

Initializes a new empty instance of the AtomLinkCollection class.

AtomLinkCollection ( AtomLink participants ) : System

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

AtomLinkCollection ( AtomLinkCollection participants ) : System

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

Contains ( AtomLink value ) : bool

Determines whether a specfic AtomLink value is in this AtomLinkCollection.

GetEnumerator ( ) : AtomLinkCollection.Enumerator

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

IndexOf ( AtomLink value ) : int

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

Insert ( int index, AtomLink value ) : void

Inserts an element into the AtomLinkCollection at the specified index

Remove ( AtomLink value ) : void

Removes the first occurrence of a specific AtomLink from this AtomLinkCollection.

this ( int index ) : AtomLink

Gets or sets the AtomLink at the given index in this AtomLinkCollection.

메소드 상세

Add() 공개 메소드

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

AddRange() 공개 메소드

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

AddRange() 공개 메소드

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

AtomLinkCollection() 공개 메소드

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

AtomLinkCollection() 공개 메소드

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

AtomLinkCollection() 공개 메소드

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

Contains() 공개 메소드

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

GetEnumerator() 공개 메소드

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

IndexOf() 공개 메소드

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

Insert() 공개 메소드

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

Remove() 공개 메소드

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

this() 공개 메소드

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