RestoreFolderCollection.Insert Method (Int32, RestoreFolder)

 

Applies To: SQL Server (starting with 2016)

Inserts a RestoreFolder 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,
    RestoreFolder item
)
public:
void Insert(
    int index,
    RestoreFolder^ item
)
member Insert : 
        index:int *
        item:RestoreFolder -> unit
Public Sub Insert (
    index As Integer,
    item As RestoreFolder
)

Parameters

Exceptions

Exception Condition
ArgumentOutOfRangeException

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

See Also

RestoreFolderCollection Class
Microsoft.AnalysisServices Namespace

Return to top