C# 클래스 Hd.QueryExtensions.ParameterCollection

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

공개 메소드들

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

Adds an instance of type Parameter to the end of this ParameterCollection.

AddRange ( Parameter items ) : void

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

AddRange ( ParameterCollection items ) : void

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

Contains ( Parameter value ) : bool

Determines whether a specfic Parameter value is in this ParameterCollection.

GetEnumerator ( ) : Enumerator

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

IndexOf ( Parameter value ) : int

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

Insert ( int index, Parameter value ) : void

Inserts an element into the ParameterCollection at the specified index

ParameterCollection ( ) : System

Initializes a new empty instance of the ParameterCollection class.

ParameterCollection ( Parameter items ) : System

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

ParameterCollection ( ParameterCollection items ) : System

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

Remove ( Parameter value ) : void

Removes the first occurrence of a specific Parameter from this ParameterCollection.

this ( int index ) : Parameter

Gets or sets the Parameter at the given index in this ParameterCollection.

메소드 상세

Add() 공개 메소드

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

AddRange() 공개 메소드

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

AddRange() 공개 메소드

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

Contains() 공개 메소드

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

GetEnumerator() 공개 메소드

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

IndexOf() 공개 메소드

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

Insert() 공개 메소드

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

ParameterCollection() 공개 메소드

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

ParameterCollection() 공개 메소드

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

ParameterCollection() 공개 메소드

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

Remove() 공개 메소드

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

this() 공개 메소드

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