RestoreLocationCollection.Item Property
Gets the RestoreLocation at the specified index from the collection.
Namespace: Microsoft.AnalysisServices
Assembly: Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)
Syntax
'Declaration
Public Default Property Item ( _
index As Integer _
) As RestoreLocation
Get
Set
'Usage
Dim instance As RestoreLocationCollection
Dim index As Integer
Dim value As RestoreLocation
value = instance(index)
instance(index) = value
public RestoreLocation this[
int index
] { get; set; }
public:
property RestoreLocation^ default[int index] {
RestoreLocation^ get (int index);
void set (int index, RestoreLocation^ value);
}
member Item : RestoreLocation with get, set
JScript supports the use of indexed properties, but not the declaration of new ones.
Parameters
- index
Type: System.Int32
The zero-based index of the RestoreLocation to return.
Property Value
Type: Microsoft.AnalysisServices.RestoreLocation
The RestoreLocation at the specified index.
Exceptions
Exception | Condition |
---|---|
ArgumentOutOfRangeException | index is less than zero. -or- index is equal to or greater than Count. |