AlgorithmParameterCollection.Contains Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.