XmlaMessageCollection.Item Property (Int32)

 

Applies To: SQL Server 2016 Preview

Gets the XmlaMessage at the specified index from the collection.

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

Syntax

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

Parameters

Property Value

Type: Microsoft.AnalysisServices.XmlaMessage

The XmlaMessage at the specified index.

Exceptions

Exception Condition
ArgumentOutOfRangeException

index is less than zero.

-or-

index is equal to or greater than Count.

See Also

XmlaMessageCollection Class
Microsoft.AnalysisServices Namespace

Return to top