C# 클래스 newtelligence.DasBlog.Web.ContentFilterCollection

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

공개 메소드들

메소드 설명
Add ( ContentFilter value ) : void

Adds an instance of type ContentFilter to the end of this ContentFilterCollection.

AddRange ( ContentFilter items ) : void

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

AddRange ( ContentFilterCollection items ) : void

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

Contains ( ContentFilter value ) : bool

Determines whether a specfic ContentFilter value is in this ContentFilterCollection.

ContentFilterCollection ( ) : System

Initializes a new empty instance of the ContentFilterCollection class.

ContentFilterCollection ( ContentFilter items ) : System

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

ContentFilterCollection ( ContentFilterCollection items ) : System

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

GetEnumerator ( ) : Enumerator

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

IndexOf ( ContentFilter value ) : int

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

Insert ( int index, ContentFilter value ) : void

Inserts an element into the ContentFilterCollection at the specified index

Remove ( ContentFilter value ) : void

Removes the first occurrence of a specific ContentFilter from this ContentFilterCollection.

this ( int index ) : ContentFilter

Gets or sets the ContentFilter at the given index in this ContentFilterCollection.

메소드 상세

Add() 공개 메소드

Adds an instance of type ContentFilter to the end of this ContentFilterCollection.
public Add ( ContentFilter value ) : void
value ContentFilter /// The ContentFilter to be added to the end of this ContentFilterCollection. ///
리턴 void

AddRange() 공개 메소드

Adds the elements of an array to the end of this ContentFilterCollection.
public AddRange ( ContentFilter items ) : void
items ContentFilter /// The array whose elements are to be added to the end of this ContentFilterCollection. ///
리턴 void

AddRange() 공개 메소드

Adds the elements of another ContentFilterCollection to the end of this ContentFilterCollection.
public AddRange ( ContentFilterCollection items ) : void
items ContentFilterCollection /// The ContentFilterCollection whose elements are to be added to the end of this ContentFilterCollection. ///
리턴 void

Contains() 공개 메소드

Determines whether a specfic ContentFilter value is in this ContentFilterCollection.
public Contains ( ContentFilter value ) : bool
value ContentFilter /// The ContentFilter value to locate in this ContentFilterCollection. ///
리턴 bool

ContentFilterCollection() 공개 메소드

Initializes a new empty instance of the ContentFilterCollection class.
public ContentFilterCollection ( ) : System
리턴 System

ContentFilterCollection() 공개 메소드

Initializes a new instance of the ContentFilterCollection class, containing elements copied from an array.
public ContentFilterCollection ( ContentFilter items ) : System
items ContentFilter /// The array whose elements are to be added to the new ContentFilterCollection. ///
리턴 System

ContentFilterCollection() 공개 메소드

Initializes a new instance of the ContentFilterCollection class, containing elements copied from another instance of ContentFilterCollection
public ContentFilterCollection ( ContentFilterCollection items ) : System
items ContentFilterCollection /// The ContentFilterCollection whose elements are to be added to the new ContentFilterCollection. ///
리턴 System

GetEnumerator() 공개 메소드

Returns an enumerator that can iterate through the elements of this ContentFilterCollection.
public GetEnumerator ( ) : Enumerator
리턴 Enumerator

IndexOf() 공개 메소드

Return the zero-based index of the first occurrence of a specific value in this ContentFilterCollection
public IndexOf ( ContentFilter value ) : int
value ContentFilter /// The ContentFilter value to locate in the ContentFilterCollection. ///
리턴 int

Insert() 공개 메소드

Inserts an element into the ContentFilterCollection at the specified index
public Insert ( int index, ContentFilter value ) : void
index int /// The index at which the ContentFilter is to be inserted. ///
value ContentFilter /// The ContentFilter to insert. ///
리턴 void

Remove() 공개 메소드

Removes the first occurrence of a specific ContentFilter from this ContentFilterCollection.
public Remove ( ContentFilter value ) : void
value ContentFilter /// The ContentFilter value to remove from this ContentFilterCollection. ///
리턴 void

this() 공개 메소드

Gets or sets the ContentFilter at the given index in this ContentFilterCollection.
public this ( int index ) : ContentFilter
index int
리턴 ContentFilter