C# Класс newtelligence.DasBlog.Web.Services.Rsd.RsdApiCollection

A collection of elements of type RsdApi
Наследование: System.Collections.CollectionBase
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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