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

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

Méthodes publiques

Méthode Description
Add ( AtomLink value ) : void

Adds an instance of type AtomLink to the end of this AtomLinkCollection.

AddRange ( AtomLink participants ) : void

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

AddRange ( AtomLinkCollection participants ) : void

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

AtomLinkCollection ( ) : System

Initializes a new empty instance of the AtomLinkCollection class.

AtomLinkCollection ( AtomLink participants ) : System

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

AtomLinkCollection ( AtomLinkCollection participants ) : System

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

Contains ( AtomLink value ) : bool

Determines whether a specfic AtomLink value is in this AtomLinkCollection.

GetEnumerator ( ) : AtomLinkCollection.Enumerator

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

IndexOf ( AtomLink value ) : int

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

Insert ( int index, AtomLink value ) : void

Inserts an element into the AtomLinkCollection at the specified index

Remove ( AtomLink value ) : void

Removes the first occurrence of a specific AtomLink from this AtomLinkCollection.

this ( int index ) : AtomLink

Gets or sets the AtomLink at the given index in this AtomLinkCollection.

Method Details

Add() public méthode

Adds an instance of type AtomLink to the end of this AtomLinkCollection.
public Add ( AtomLink value ) : void
value AtomLink /// The AtomLink to be added to the end of this AtomLinkCollection. ///
Résultat void

AddRange() public méthode

Adds the elements of an array to the end of this AtomLinkCollection.
public AddRange ( AtomLink participants ) : void
participants AtomLink /// The array whose elements are to be added to the end of this AtomLinkCollection. ///
Résultat void

AddRange() public méthode

Adds the elements of another AtomLinkCollection to the end of this AtomLinkCollection.
public AddRange ( AtomLinkCollection participants ) : void
participants AtomLinkCollection /// The AtomLinkCollection whose elements are to be added to the end of this AtomLinkCollection. ///
Résultat void

AtomLinkCollection() public méthode

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

AtomLinkCollection() public méthode

Initializes a new instance of the AtomLinkCollection class, containing elements copied from an array.
public AtomLinkCollection ( AtomLink participants ) : System
participants AtomLink /// The array whose elements are to be added to the new AtomLinkCollection. ///
Résultat System

AtomLinkCollection() public méthode

Initializes a new instance of the AtomLinkCollection class, containing elements copied from another instance of AtomLinkCollection
public AtomLinkCollection ( AtomLinkCollection participants ) : System
participants AtomLinkCollection /// The AtomLinkCollection whose elements are to be added to the new AtomLinkCollection. ///
Résultat System

Contains() public méthode

Determines whether a specfic AtomLink value is in this AtomLinkCollection.
public Contains ( AtomLink value ) : bool
value AtomLink /// The AtomLink value to locate in this AtomLinkCollection. ///
Résultat bool

GetEnumerator() public méthode

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

IndexOf() public méthode

Return the zero-based index of the first occurrence of a specific value in this AtomLinkCollection
public IndexOf ( AtomLink value ) : int
value AtomLink /// The AtomLink value to locate in the AtomLinkCollection. ///
Résultat int

Insert() public méthode

Inserts an element into the AtomLinkCollection at the specified index
public Insert ( int index, AtomLink value ) : void
index int /// The index at which the AtomLink is to be inserted. ///
value AtomLink /// The AtomLink to insert. ///
Résultat void

Remove() public méthode

Removes the first occurrence of a specific AtomLink from this AtomLinkCollection.
public Remove ( AtomLink value ) : void
value AtomLink /// The AtomLink value to remove from this AtomLinkCollection. ///
Résultat void

this() public méthode

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