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

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

Public Methods

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

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

AddRange() public method

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

AddRange() public method

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

AtomLinkCollection() public method

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

AtomLinkCollection() public method

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

AtomLinkCollection() public method

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

Contains() public method

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

GetEnumerator() public method

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

IndexOf() public method

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

Insert() public method

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

Remove() public method

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

this() public method

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