C# Класс newtelligence.DasBlog.Web.Core.NavigatorItemCollection

A collection of elements of type NavigatorItem
Наследование: System.Collections.CollectionBase
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Описание методов

Add() публичный Метод

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. ///
Результат void

AddRange() публичный Метод

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. ///
Результат void

AddRange() публичный Метод

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. ///
Результат void

Contains() публичный Метод

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. ///
Результат bool

GetEnumerator() публичный Метод

Returns an enumerator that can iterate through the elements of this NavigatorItemCollection.
public GetEnumerator ( ) : NavigatorItemCollection.Enumerator
Результат NavigatorItemCollection.Enumerator

IndexOf() публичный Метод

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. ///
Результат int

Insert() публичный Метод

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. ///
Результат void

NavigatorItemCollection() публичный Метод

Initializes a new empty instance of the NavigatorItemCollection class.
public NavigatorItemCollection ( ) : System
Результат System

NavigatorItemCollection() публичный Метод

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. ///
Результат System

NavigatorItemCollection() публичный Метод

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. ///
Результат System

Remove() публичный Метод

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. ///
Результат void

this() публичный Метод

Gets or sets the NavigatorItem at the given index in this NavigatorItemCollection.
public this ( int index ) : NavigatorItem
index int
Результат NavigatorItem