XmlaResultCollection.Item Property (Int32)

 

Applies To: SQL Server 2016 Preview

Gets the XmlaResult at the specified index in the collection.

Namespace:   Microsoft.AnalysisServices
Assembly:  Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)

Syntax

public XmlaResult this[
    int index
] { get; }
public:
property XmlaResult^ default[
    int index
] {
    XmlaResult^ get(int index);
}
member Item : 
        index:int -> XmlaResult with get
Public ReadOnly Property Item (
    index As Integer
) As XmlaResult

Parameters

Property Value

Type: Microsoft.AnalysisServices.XmlaResult

The XmlaResult at the specified index.

Exceptions

Exception Condition
ArgumentOutOfRangeException

index is less than zero.

-or-

index is equal to or greater than Count.

See Also

XmlaResultCollection Class
Microsoft.AnalysisServices Namespace

Return to top