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

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

Public Methods

Method Description
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.

Method Details

Add() public method

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

AddRange() public method

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

AddRange() public method

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

AtomContentCollection() public method

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

AtomContentCollection() public method

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

AtomContentCollection() public method

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

Contains() public method

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

GetEnumerator() public method

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

IndexOf() public method

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

Insert() public method

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

Remove() public method

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

this() public method

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