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

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

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

Метод Описание
Add ( AtomParticipant value ) : void

Adds an instance of type AtomParticipant to the end of this AtomParticipantCollection.

AddRange ( AtomParticipant participants ) : void

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

AddRange ( AtomParticipantCollection participants ) : void

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

AtomParticipantCollection ( ) : System

Initializes a new empty instance of the AtomParticipantCollection class.

AtomParticipantCollection ( AtomParticipant participants ) : System

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

AtomParticipantCollection ( AtomParticipantCollection participants ) : System

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

Contains ( AtomParticipant value ) : bool

Determines whether a specfic AtomParticipant value is in this AtomParticipantCollection.

GetEnumerator ( ) : AtomParticipantCollection.Enumerator

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

IndexOf ( AtomParticipant value ) : int

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

Insert ( int index, AtomParticipant value ) : void

Inserts an element into the AtomParticipantCollection at the specified index

Remove ( AtomParticipant value ) : void

Removes the first occurrence of a specific AtomParticipant from this AtomParticipantCollection.

this ( int index ) : AtomParticipant

Gets or sets the AtomParticipant at the given index in this AtomParticipantCollection.

Описание методов

Add() публичный Метод

Adds an instance of type AtomParticipant to the end of this AtomParticipantCollection.
public Add ( AtomParticipant value ) : void
value AtomParticipant /// The AtomParticipant to be added to the end of this AtomParticipantCollection. ///
Результат void

AddRange() публичный Метод

Adds the elements of an array to the end of this AtomParticipantCollection.
public AddRange ( AtomParticipant participants ) : void
participants AtomParticipant /// The array whose elements are to be added to the end of this AtomParticipantCollection. ///
Результат void

AddRange() публичный Метод

Adds the elements of another AtomParticipantCollection to the end of this AtomParticipantCollection.
public AddRange ( AtomParticipantCollection participants ) : void
participants AtomParticipantCollection /// The AtomParticipantCollection whose elements are to be added to the end of this AtomParticipantCollection. ///
Результат void

AtomParticipantCollection() публичный Метод

Initializes a new empty instance of the AtomParticipantCollection class.
public AtomParticipantCollection ( ) : System
Результат System

AtomParticipantCollection() публичный Метод

Initializes a new instance of the AtomParticipantCollection class, containing elements copied from an array.
public AtomParticipantCollection ( AtomParticipant participants ) : System
participants AtomParticipant /// The array whose elements are to be added to the new AtomParticipantCollection. ///
Результат System

AtomParticipantCollection() публичный Метод

Initializes a new instance of the AtomParticipantCollection class, containing elements copied from another instance of AtomParticipantCollection
public AtomParticipantCollection ( AtomParticipantCollection participants ) : System
participants AtomParticipantCollection /// The AtomParticipantCollection whose elements are to be added to the new AtomParticipantCollection. ///
Результат System

Contains() публичный Метод

Determines whether a specfic AtomParticipant value is in this AtomParticipantCollection.
public Contains ( AtomParticipant value ) : bool
value AtomParticipant /// The AtomParticipant value to locate in this AtomParticipantCollection. ///
Результат bool

GetEnumerator() публичный Метод

Returns an enumerator that can iterate through the elements of this AtomParticipantCollection.
public GetEnumerator ( ) : AtomParticipantCollection.Enumerator
Результат AtomParticipantCollection.Enumerator

IndexOf() публичный Метод

Return the zero-based index of the first occurrence of a specific value in this AtomParticipantCollection
public IndexOf ( AtomParticipant value ) : int
value AtomParticipant /// The AtomParticipant value to locate in the AtomParticipantCollection. ///
Результат int

Insert() публичный Метод

Inserts an element into the AtomParticipantCollection at the specified index
public Insert ( int index, AtomParticipant value ) : void
index int /// The index at which the AtomParticipant is to be inserted. ///
value AtomParticipant /// The AtomParticipant to insert. ///
Результат void

Remove() публичный Метод

Removes the first occurrence of a specific AtomParticipant from this AtomParticipantCollection.
public Remove ( AtomParticipant value ) : void
value AtomParticipant /// The AtomParticipant value to remove from this AtomParticipantCollection. ///
Результат void

this() публичный Метод

Gets or sets the AtomParticipant at the given index in this AtomParticipantCollection.
public this ( int index ) : AtomParticipant
index int
Результат AtomParticipant