InsertInput 方法
Adds an IDTSInput100 object to the IDTSInputCollection100 of the component.
命名空间: Microsoft.SqlServer.Dts.Pipeline.Wrapper
程序集: Microsoft.SqlServer.DTSPipelineWrap(在 Microsoft.SqlServer.DTSPipelineWrap.dll 中)
语法
声明
Public Overridable Function InsertInput ( _
eInsertPlacement As DTSInsertPlacement, _
lInputID As Integer _
) As IDTSInput100
用法
Dim instance As CManagedComponentWrapperClass
Dim eInsertPlacement As DTSInsertPlacement
Dim lInputID As Integer
Dim returnValue As IDTSInput100
returnValue = instance.InsertInput(eInsertPlacement, _
lInputID)
public virtual IDTSInput100 InsertInput(
DTSInsertPlacement eInsertPlacement,
int lInputID
)
public:
virtual IDTSInput100^ InsertInput(
[InAttribute] DTSInsertPlacement eInsertPlacement,
[InAttribute] int lInputID
)
abstract InsertInput :
eInsertPlacement:DTSInsertPlacement *
lInputID:int -> IDTSInput100
override InsertInput :
eInsertPlacement:DTSInsertPlacement *
lInputID:int -> IDTSInput100
public function InsertInput(
eInsertPlacement : DTSInsertPlacement,
lInputID : int
) : IDTSInput100
参数
- eInsertPlacement
类型:Microsoft.SqlServer.Dts.Pipeline.Wrapper. . :: . .DTSInsertPlacement
Specifies whether to insert the new IDTSInput100 object before or after the IDTSInput100 object specified by inputID.
- lInputID
类型:System. . :: . .Int32
Specifies an existing IDTSInput100 object that the new IDTSInput100 is inserted next to.
返回值
类型:Microsoft.SqlServer.Dts.Pipeline.Wrapper. . :: . .IDTSInput100
The newly created IDTSInput100 object.
实现
IDTSDesigntimeComponent100. . :: . .InsertInput(DTSInsertPlacement, Int32)
注释
Call this method to insert a new IDTSInput100 object before or after the input object specified by the inputID parameter.