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

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

Public Methods

Method Description
Add ( AtomEntry value ) : void

Adds an instance of type AtomEntry to the end of this AtomEntryCollection.

AddRange ( AtomEntry entries ) : void

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

AddRange ( AtomEntryCollection entries ) : void

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

AtomEntryCollection ( ) : System

Initializes a new empty instance of the AtomEntryCollection class.

AtomEntryCollection ( AtomEntry entries ) : System

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

AtomEntryCollection ( AtomEntryCollection entries ) : System

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

Contains ( AtomEntry value ) : bool

Determines whether a specfic AtomEntry value is in this AtomEntryCollection.

GetEnumerator ( ) : AtomEntryCollection.Enumerator

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

IndexOf ( AtomEntry value ) : int

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

Insert ( int index, AtomEntry value ) : void

Inserts an element into the AtomEntryCollection at the specified index

Remove ( AtomEntry value ) : void

Removes the first occurrence of a specific AtomEntry from this AtomEntryCollection.

this ( int index ) : AtomEntry

Gets or sets the AtomEntry at the given index in this AtomEntryCollection.

Method Details

Add() public method

Adds an instance of type AtomEntry to the end of this AtomEntryCollection.
public Add ( AtomEntry value ) : void
value AtomEntry /// The AtomEntry to be added to the end of this AtomEntryCollection. ///
return void

AddRange() public method

Adds the elements of an array to the end of this AtomEntryCollection.
public AddRange ( AtomEntry entries ) : void
entries AtomEntry /// The array whose elements are to be added to the end of this AtomEntryCollection. ///
return void

AddRange() public method

Adds the elements of another AtomEntryCollection to the end of this AtomEntryCollection.
public AddRange ( AtomEntryCollection entries ) : void
entries AtomEntryCollection /// The AtomEntryCollection whose elements are to be added to the end of this AtomEntryCollection. ///
return void

AtomEntryCollection() public method

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

AtomEntryCollection() public method

Initializes a new instance of the AtomEntryCollection class, containing elements copied from an array.
public AtomEntryCollection ( AtomEntry entries ) : System
entries AtomEntry /// The array whose elements are to be added to the new AtomEntryCollection. ///
return System

AtomEntryCollection() public method

Initializes a new instance of the AtomEntryCollection class, containing elements copied from another instance of AtomEntryCollection
public AtomEntryCollection ( AtomEntryCollection entries ) : System
entries AtomEntryCollection /// The AtomEntryCollection whose elements are to be added to the new AtomEntryCollection. ///
return System

Contains() public method

Determines whether a specfic AtomEntry value is in this AtomEntryCollection.
public Contains ( AtomEntry value ) : bool
value AtomEntry /// The AtomEntry value to locate in this AtomEntryCollection. ///
return bool

GetEnumerator() public method

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

IndexOf() public method

Return the zero-based index of the first occurrence of a specific value in this AtomEntryCollection
public IndexOf ( AtomEntry value ) : int
value AtomEntry /// The AtomEntry value to locate in the AtomEntryCollection. ///
return int

Insert() public method

Inserts an element into the AtomEntryCollection at the specified index
public Insert ( int index, AtomEntry value ) : void
index int /// The index at which the AtomEntry is to be inserted. ///
value AtomEntry /// The AtomEntry to insert. ///
return void

Remove() public method

Removes the first occurrence of a specific AtomEntry from this AtomEntryCollection.
public Remove ( AtomEntry value ) : void
value AtomEntry /// The AtomEntry value to remove from this AtomEntryCollection. ///
return void

this() public method

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