ServerPropertyCollection.Item[] Property

Definition

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.

Applies to