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

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

Méthodes publiques

Méthode 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 méthode

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

AddRange() public méthode

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

AddRange() public méthode

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

AtomContentCollection() public méthode

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

AtomContentCollection() public méthode

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

AtomContentCollection() public méthode

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

Contains() public méthode

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

GetEnumerator() public méthode

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

IndexOf() public méthode

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

Insert() public méthode

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

Remove() public méthode

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

this() public méthode

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