C# Class newtelligence.DasBlog.Web.Core.NavigatorItemCollection

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

Méthodes publiques

Méthode Description
Add ( NavigatorItem value ) : void

Adds an instance of type NavigatorItem to the end of this NavigatorItemCollection.

AddRange ( NavigatorItem items ) : void

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

AddRange ( NavigatorItemCollection items ) : void

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

Contains ( NavigatorItem value ) : bool

Determines whether a specfic NavigatorItem value is in this NavigatorItemCollection.

GetEnumerator ( ) : NavigatorItemCollection.Enumerator

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

IndexOf ( NavigatorItem value ) : int

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

Insert ( int index, NavigatorItem value ) : void

Inserts an element into the NavigatorItemCollection at the specified index

NavigatorItemCollection ( ) : System

Initializes a new empty instance of the NavigatorItemCollection class.

NavigatorItemCollection ( NavigatorItem items ) : System

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

NavigatorItemCollection ( NavigatorItemCollection items ) : System

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

Remove ( NavigatorItem value ) : void

Removes the first occurrence of a specific NavigatorItem from this NavigatorItemCollection.

this ( int index ) : NavigatorItem

Gets or sets the NavigatorItem at the given index in this NavigatorItemCollection.

Method Details

Add() public méthode

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

AddRange() public méthode

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

AddRange() public méthode

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

Contains() public méthode

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

GetEnumerator() public méthode

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

IndexOf() public méthode

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

Insert() public méthode

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

NavigatorItemCollection() public méthode

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

NavigatorItemCollection() public méthode

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

NavigatorItemCollection() public méthode

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

Remove() public méthode

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

this() public méthode

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