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