Método RemoveObjectByIndex
Deletes an input object from a collection.
Namespace: Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly: Microsoft.SqlServer.DTSPipelineWrap (em Microsoft.SqlServer.DTSPipelineWrap.dll)
Sintaxe
'Declaração
Sub RemoveObjectByIndex ( _
Index As Object _
)
'Uso
Dim instance As IDTSInputCollection100
Dim Index As Object
instance.RemoveObjectByIndex(Index)
void RemoveObjectByIndex(
Object Index
)
void RemoveObjectByIndex(
[InAttribute] Object^ Index
)
abstract RemoveObjectByIndex :
Index:Object -> unit
function RemoveObjectByIndex(
Index : Object
)
Parâmetros
- Index
Tipo: System. . :: . .Object
The location of the IDTSInput100 to delete.
Comentários
The RemoveObjectByIndex method deletes the input at the location in the collection specified by the Index parameter. If the index is outside the bounds of the collection, a Microsoft.SqlServer.Dts.Runtime.HResults.DTS_E_INVALIDINDEX exception occurs.
Consulte também