C# Класс newtelligence.DasBlog.Web.Services.Atom10.AtomContentCollection

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

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

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