ImpactDetailCollection.IList.Insert Method (Int32, Object)
Applies To: SQL Server (starting with 2016)
Inserts an item to the collection at the specified index.
Namespace: Microsoft.AnalysisServices
Assembly: Microsoft.AnalysisServices.Core (in Microsoft.AnalysisServices.Core.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.Int32The zero-based index at which value should be inserted.
value
Type: System.ObjectThe object to insert into the collection.
Implements
See Also
ImpactDetailCollection Class
Microsoft.AnalysisServices Namespace
Return to top