C# 클래스 urlCollection, dasblog

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

공개 메소드들

메소드 설명
Add ( url, value ) : void

Adds an instance of type url to the end of this urlCollection.

AddRange ( url, items ) : void

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

AddRange ( urlCollection, items ) : void

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

Contains ( url, value ) : bool

Determines whether a specfic url value is in this urlCollection.

GetEnumerator ( ) : urlCollection.Enumerator,

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

IndexOf ( url, value ) : int

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

Insert ( int index, url, value ) : void

Inserts an element into the urlCollection at the specified index

Remove ( url, value ) : void

Removes the first occurrence of a specific url from this urlCollection.

this ( int index ) : url,

Gets or sets the url at the given index in this urlCollection.

urlCollection ( ) : System

Initializes a new empty instance of the urlCollection class.

urlCollection ( url, items ) : System

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

urlCollection ( urlCollection, items ) : System

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

메소드 상세

Add() 공개 메소드

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

AddRange() 공개 메소드

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

AddRange() 공개 메소드

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

Contains() 공개 메소드

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

GetEnumerator() 공개 메소드

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

IndexOf() 공개 메소드

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

Insert() 공개 메소드

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

Remove() 공개 메소드

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

this() 공개 메소드

Gets or sets the url at the given index in this urlCollection.
public this ( int index ) : url,
index int
리턴 url,

urlCollection() 공개 메소드

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

urlCollection() 공개 메소드

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

urlCollection() 공개 메소드

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