C# 클래스 newtelligence.DasBlog.Web.Services.Rsd.RsdApiCollection

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

공개 메소드들

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

Adds an instance of type RsdApi to the end of this RsdApiCollection.

AddRange ( RsdApi items ) : void

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

AddRange ( RsdApiCollection items ) : void

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

Contains ( RsdApi value ) : bool

Determines whether a specfic RsdApi value is in this RsdApiCollection.

GetEnumerator ( ) : RsdApiCollection.Enumerator

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

IndexOf ( RsdApi value ) : int

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

Insert ( int index, RsdApi value ) : void

Inserts an element into the RsdApiCollection at the specified index

Remove ( RsdApi value ) : void

Removes the first occurrence of a specific RsdApi from this RsdApiCollection.

RsdApiCollection ( ) : System

Initializes a new empty instance of the RsdApiCollection class.

RsdApiCollection ( RsdApi items ) : System

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

RsdApiCollection ( RsdApiCollection items ) : System

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

this ( int index ) : RsdApi

Gets or sets the RsdApi at the given index in this RsdApiCollection.

메소드 상세

Add() 공개 메소드

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

AddRange() 공개 메소드

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

AddRange() 공개 메소드

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

Contains() 공개 메소드

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

GetEnumerator() 공개 메소드

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

IndexOf() 공개 메소드

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

Insert() 공개 메소드

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

Remove() 공개 메소드

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

RsdApiCollection() 공개 메소드

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

RsdApiCollection() 공개 메소드

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

RsdApiCollection() 공개 메소드

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

this() 공개 메소드

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