C# Class Hd.QueryExtensions.ParameterCollection

Inheritance: System.Collections.CollectionBase
ファイルを表示 Open project: TargetProcess/Tp.HelpDesk Class Usage Examples

Public Methods

Method Description
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.

Method Details

Add() public method

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. ///
return void

AddRange() public method

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. ///
return void

AddRange() public method

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. ///
return void

Contains() public method

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. ///
return bool

GetEnumerator() public method

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

IndexOf() public method

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. ///
return int

Insert() public method

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. ///
return void

ParameterCollection() public method

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

ParameterCollection() public method

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. ///
return System

ParameterCollection() public method

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. ///
return System

Remove() public method

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. ///
return void

this() public method

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