RestoreFolderCollection.IList.Insert-Methode
Inserts an item to the collection at the specified index.
Namespace: Microsoft.AnalysisServices
Assembly: Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)
Syntax
'Declaration
Private Sub Insert ( _
index As Integer, _
value As Object _
) Implements IList.Insert
'Usage
Dim instance As RestoreFolderCollection
Dim index As Integer
Dim value As Object
CType(instance, IList).Insert(index, _
value)
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
JScript unterstützt die Verwendung expliziter Schnittstellenimplementierungen, aber nicht die Deklaration neuer Schnittstellenimplementierungen.
Parameter
- index
Typ: System.Int32
The zero-based index at which value should be inserted.
- value
Typ: System.Object
The object to insert into the collection.