AlgorithmParameterCollection.Item[] Property
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
Item[String] |
Gets the AlgorithmParameter element with the specified name. |
Item[Int32] |
Gets the AlgorithmParameter element at the specified index. |
Item[String]
Gets the AlgorithmParameter element with the specified name.
public Microsoft.AnalysisServices.AlgorithmParameter this[string name] { get; }
member this.Item(string) : Microsoft.AnalysisServices.AlgorithmParameter
Default Public ReadOnly Property Item(name As String) As AlgorithmParameter
Parameters
- name
- String
The name of the element to get.
Property Value
The AlgorithmParameter element with the specified name.
Exceptions
An element with the specified name does not exists in the collection.
Applies to
Item[Int32]
Gets the AlgorithmParameter element at the specified index.
public Microsoft.AnalysisServices.AlgorithmParameter this[int index] { get; }
member this.Item(int) : Microsoft.AnalysisServices.AlgorithmParameter
Default Public ReadOnly Property Item(index As Integer) As AlgorithmParameter
Parameters
- index
- Int32
The zero-based index of the element to get.
Property Value
The AlgorithmParameter element at the specified index.
Exceptions
The specified index is not a valid.