AlgorithmParameterCollection.IndexOf Method

Definition

Overloads

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.

IndexOf(AlgorithmParameter)

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

public int IndexOf (Microsoft.AnalysisServices.AlgorithmParameter item);
member this.IndexOf : Microsoft.AnalysisServices.AlgorithmParameter -> int
Public Function IndexOf (item As AlgorithmParameter) As Integer

Parameters

Returns

The zero-based index of the AlgorithmParameter in the collection, if found; otherwise, -1.

Applies to

IndexOf(String)

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

public int IndexOf (string name);
member this.IndexOf : string -> int
Public Function IndexOf (name As String) As Integer

Parameters

name
String

The Name of the AlgorithmParameter to locate.

Returns

The zero-based index of the AlgorithmParameter in the collection, if found; otherwise, -1.

Applies to