[]
Represents a collection of parameter values.
public sealed class ParameterValueCollection : IList<ParameterValue>, ICollection<ParameterValue>, IEnumerable<ParameterValue>, IEnumerable
This class implements IList<T>.
| Name | Description |
|---|---|
| Count | Gets the number of elements contained in the ParameterValueCollection. |
| IsReadOnly | Gets a value indicating whether the ParameterValueCollection is read-only. |
| this[int] | Gets the ParameterValue at the specified index. |
| Name | Description |
|---|---|
| Add(ParameterValue) | Adds an item to the ParameterValueCollection. |
| AddRange(IEnumerable<ParameterValue>) | Adds the elements of the specified collection to the end of the ParameterValueCollection. |
| Clear() | Removes all items from the ParameterValueCollection. |
| Contains(ParameterValue) | Determines whether the ParameterValueCollection contains a specific value. |
| CopyTo(ParameterValue[], int) | Copies the elements of the ParameterValueCollection to an Array, starting at a particular Array index. |
| GetEnumerator() | Returns an enumerator that iterates through the collection. |
| IndexOf(ParameterValue) | Determines the index of a specific item in the ParameterValueCollection. |
| Insert(int, ParameterValue) | Inserts an item to the ParameterValueCollection at the specified index. |
| Remove(ParameterValue) | Removes the first occurrence of a specific object from the ParameterValueCollection. |
| RemoveAt(int) | Removes the element at the specified index. |