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

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

Public Methods

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

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

AddRange() public method

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

AddRange() public method

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

Contains() public method

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

GetEnumerator() public method

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

IndexOf() public method

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

Insert() public method

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

NavigatorItemCollection() public method

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

NavigatorItemCollection() public method

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

NavigatorItemCollection() public method

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

Remove() public method

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

this() public method

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