C# 클래스 newtelligence.DasBlog.Web.Core.NavigatorItemCollection

A collection of elements of type NavigatorItem
상속: System.Collections.CollectionBase
파일 보기 프로젝트 열기: AArnott/dasblog 1 사용 예제들

공개 메소드들

메소드 설명
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