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

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

Public Methods

Method 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 method

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. ///
return void

AddRange() public method

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. ///
return void

AddRange() public method

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. ///
return void

AtomParticipantCollection() public method

Initializes a new empty instance of the AtomParticipantCollection class.
public AtomParticipantCollection ( ) : System
return System

AtomParticipantCollection() public method

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. ///
return System

AtomParticipantCollection() public method

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. ///
return System

Contains() public method

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. ///
return bool

GetEnumerator() public method

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

IndexOf() public method

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. ///
return int

Insert() public method

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. ///
return void

Remove() public method

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. ///
return void

this() public method

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