C# Class newtelligence.DasBlog.Web.Services.Atom10.AtomParticipantCollection

A collection of elements of type AtomParticipant
Inheritance: System.Collections.CollectionBase
Afficher le fichier Open project: AArnott/dasblog Class Usage Examples

Méthodes publiques

Méthode Description
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.

Method Details

Add() public méthode

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. ///
Résultat void

AddRange() public méthode

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. ///
Résultat void

AddRange() public méthode

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. ///
Résultat void

AtomParticipantCollection() public méthode

Initializes a new empty instance of the AtomParticipantCollection class.
public AtomParticipantCollection ( ) : System
Résultat System

AtomParticipantCollection() public méthode

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. ///
Résultat System

AtomParticipantCollection() public méthode

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. ///
Résultat System

Contains() public méthode

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. ///
Résultat bool

GetEnumerator() public méthode

Returns an enumerator that can iterate through the elements of this AtomParticipantCollection.
public GetEnumerator ( ) : AtomParticipantCollection.Enumerator
Résultat AtomParticipantCollection.Enumerator

IndexOf() public méthode

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. ///
Résultat int

Insert() public méthode

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. ///
Résultat void

Remove() public méthode

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. ///
Résultat void

this() public méthode

Gets or sets the AtomParticipant at the given index in this AtomParticipantCollection.
public this ( int index ) : AtomParticipant
index int
Résultat AtomParticipant