AlgorithmParameterCollection.Contains Method

Definition

Overloads

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.

Contains(AlgorithmParameter)

Determines whether the specified AlgorithmParameter exists in the collection.

public bool Contains (Microsoft.AnalysisServices.AlgorithmParameter item);
member this.Contains : Microsoft.AnalysisServices.AlgorithmParameter -> bool
Public Function Contains (item As AlgorithmParameter) As Boolean

Parameters

item
AlgorithmParameter

The AlgorithmParameter whose existence is checked.

Returns

True, if the specified AlgorithmParameter is found in the collection; otherwise, false.

Applies to

Contains(String)

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

public bool Contains (string name);
member this.Contains : string -> bool
Public Function Contains (name As String) As Boolean

Parameters

name
String

The Name of the AlgorithmParameter whose existence is checked.

Returns

True, if an AlgorithmParameter with the specified Name is found in the collection; otherwise, false.

Applies to