C# Класс Hd.QueryExtensions.ParameterCollection

Наследование: System.Collections.CollectionBase
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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