RestoreLocationCollection.Insert Method (Int32, RestoreLocation)

 

Applies To: SQL Server (starting with 2016)

Inserts a RestoreLocation into the collection at the specified index.

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

Syntax

public void Insert(
    int index,
    RestoreLocation item
)
public:
void Insert(
    int index,
    RestoreLocation^ item
)
member Insert : 
        index:int *
        item:RestoreLocation -> unit
Public Sub Insert (
    index As Integer,
    item As RestoreLocation
)

Parameters

Exceptions

Exception Condition
ArgumentOutOfRangeException

index is less than zero.-or-index is equal to or greater than Count.

See Also

RestoreLocationCollection Class
Microsoft.AnalysisServices Namespace

Return to top