BackupLocationCollection.IList.Insert Method (Int32, Object)

 

Applies To: SQL Server 2016 Preview

Inserts an item to the collection at the specified index.

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

Syntax

void IList.Insert(
    int index,
    object value
)
private:
virtual void Insert(
    int index,
    Object^ value
) sealed = IList::Insert
private abstract Insert : 
        index:int *
        value:Object -> unit
private override Insert : 
        index:int *
        value:Object -> unit
Private Sub Insert (
    index As Integer,
    value As Object
)
    Implements IList.Insert

Parameters

  • index
    Type: System.Int32

    The zero-based index at which value should be inserted.

  • value
    Type: System.Object

    The object to insert into the collection.

Implements

IList.Insert(Int32, Object)

See Also

BackupLocationCollection Class
Microsoft.AnalysisServices Namespace

Return to top