DependencyChainCollection.Insert Method (Int32, Dependency)
Do not reference this member directly in your code. It supports the SQL Server infrastructure. Inserts the specified Dependency object into the collection at the specified index.
Namespace: Microsoft.SqlServer.Management.Sdk.Sfc
Assembly: Microsoft.SqlServer.Management.Sdk.Sfc (in Microsoft.SqlServer.Management.Sdk.Sfc.dll)
Syntax
'Declaration
Public Sub Insert ( _
index As Integer, _
value As Dependency _
)
'Usage
Dim instance As DependencyChainCollection
Dim index As Integer
Dim value As Dependency
instance.Insert(index, value)
public void Insert(
int index,
Dependency value
)
public:
void Insert(
int index,
Dependency^ value
)
member Insert :
index:int *
value:Dependency -> unit
public function Insert(
index : int,
value : Dependency
)
Parameters
- index
Type: System.Int32
The zero-based index at which value should be inserted
- value
Type: Microsoft.SqlServer.Management.Sdk.Sfc.Dependency
The Dependency object to insert.