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

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

Public Methods

Method Description
Add ( AtomCategory value ) : void

Adds an instance of type AtomCategory to the end of this AtomCategoryCollection.

AddRange ( AtomCategory entries ) : void

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

AddRange ( AtomCategoryCollection entries ) : void

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

AtomCategoryCollection ( ) : System

Initializes a new empty instance of the AtomCategoryCollection class.

AtomCategoryCollection ( AtomCategory entries ) : System

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

AtomCategoryCollection ( AtomCategoryCollection entries ) : System

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

Contains ( AtomCategory value ) : bool

Determines whether a specfic AtomCategory value is in this AtomCategoryCollection.

GetEnumerator ( ) : AtomCategoryCollection.Enumerator

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

IndexOf ( AtomCategory value ) : int

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

Insert ( int index, AtomCategory value ) : void

Inserts an element into the AtomCategoryCollection at the specified index

Remove ( AtomCategory value ) : void

Removes the first occurrence of a specific AtomCategory from this AtomCategoryCollection.

this ( int index ) : AtomCategory

Gets or sets the AtomCategory at the given index in this AtomCategoryCollection.

Method Details

Add() public method

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

AddRange() public method

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

AddRange() public method

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

AtomCategoryCollection() public method

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

AtomCategoryCollection() public method

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

AtomCategoryCollection() public method

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

Contains() public method

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

GetEnumerator() public method

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

IndexOf() public method

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

Insert() public method

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

Remove() public method

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

this() public method

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