AlgorithmParameterCollection Class

Definition

Represents a collection of AlgorithmParameter objects. This class cannot be inherited.

[System.Runtime.InteropServices.Guid("8FDB2E6F-E045-45a8-8587-D3D491FF2E22")]
public sealed class AlgorithmParameterCollection : System.Collections.IList
[<System.Runtime.InteropServices.Guid("8FDB2E6F-E045-45a8-8587-D3D491FF2E22")>]
type AlgorithmParameterCollection = class
    interface IList
    interface ICollection
    interface IEnumerable
Public NotInheritable Class AlgorithmParameterCollection
Implements IList
Inheritance
AlgorithmParameterCollection
Attributes
Implements

Constructors

AlgorithmParameterCollection()

Properties

Count

Gets the number of elements contained in the collection.

Item[Int32]

Gets the AlgorithmParameter element at the specified index.

Item[String]

Gets the AlgorithmParameter element with the specified name.

Methods

Add(AlgorithmParameter)

Adds the specified AlgorithmParameter to the end of the collection.

Add(String, Object)

Creates a new AlgorithmParameter object using the name and value provided, adds it to the collection and returns the new AlgorithmParameter object created.

Clear()

Removes all items from the collection.

Contains(AlgorithmParameter)

Determines whether the specified AlgorithmParameter exists in the collection.

Contains(String)

Determines whether an AlgorithmParameter with the specified Name exists in the collection.

CopyTo(AlgorithmParameterCollection)

Copies the elements from this collection to another.

CopyTo(Array, Int32)

Copies the elements of the collection to an Array, starting at a particular Array index.

Find(String)

Searches for the AlgorithmParameter with the specified Name and returns it.

IndexOf(AlgorithmParameter)

Searches for the specified AlgorithmParameter and returns its zero-based index within the collection.

IndexOf(String)

Searches for the specified AlgorithmParameter with the specified Name and returns its zero-based index within the collection.

Insert(Int32, AlgorithmParameter)

Inserts the specified AlgorithmParameter to the collection at the specified index.

Insert(Int32, String, Object)

Creates a new AlgorithmParameter object using the name and value provided, inserts it to the collection at the specified index, and returns the new AlgorithmParameter object created.

Remove(AlgorithmParameter)

Removes the specified AlgorithmParameter from this collection.

Remove(String)

Removes the AlgorithmParameter with the specified Name from this collection.

RemoveAt(Int32)

Removes the AlgorithmParameter at the specified index.

Explicit Interface Implementations

ICollection.IsSynchronized
ICollection.SyncRoot
IEnumerable.GetEnumerator()
IList.Add(Object)
IList.Contains(Object)
IList.IndexOf(Object)
IList.Insert(Int32, Object)
IList.IsFixedSize
IList.IsReadOnly
IList.Item[Int32]
IList.Remove(Object)

Applies to