この API は、SQL Server 2012 インフラストラクチャをサポートします。独自に作成したコードから直接使用するためのものではありません。
コンポーネント ホストが指定された数の入力を処理できるかどうかを示します。
名前空間: Microsoft.SqlServer.Dts.Pipeline.Wrapper
アセンブリ: Microsoft.SqlServer.DTSPipelineWrap (Microsoft.SqlServer.DTSPipelineWrap.dll)
構文
'宣言
Sub HostCanProcess ( _
pWrapper As IDTSManagedComponentWrapper100, _
inputCount As Integer, _
inputIDs As Integer(), _
ByRef pCanProcess As Boolean() _
)
'使用
Dim instance As IDTSMultiInputComponentHost100
Dim pWrapper As IDTSManagedComponentWrapper100
Dim inputCount As Integer
Dim inputIDs As Integer()
Dim pCanProcess As Boolean()
instance.HostCanProcess(pWrapper, inputCount, _
inputIDs, pCanProcess)
void HostCanProcess(
IDTSManagedComponentWrapper100 pWrapper,
int inputCount,
int[] inputIDs,
ref bool[] pCanProcess
)
void HostCanProcess(
[InAttribute] IDTSManagedComponentWrapper100^ pWrapper,
[InAttribute] int inputCount,
[InAttribute] array<int>^ inputIDs,
array<bool>^% pCanProcess
)
abstract HostCanProcess :
pWrapper:IDTSManagedComponentWrapper100 *
inputCount:int *
inputIDs:int[] *
pCanProcess:bool[] byref -> unit
function HostCanProcess(
pWrapper : IDTSManagedComponentWrapper100,
inputCount : int,
inputIDs : int[],
pCanProcess : boolean[]
)
パラメーター
- pWrapper
型: Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSManagedComponentWrapper100
マネージ コンポーネント ラッパーです。
- inputCount
型: System.Int32
入力の数です。
- inputIDs
型: array<System.Int32[]
このメソッドが戻るとき、入力識別子の配列が含まれています。 このパラメーターは初期化せずに渡されます。
- pCanProcess
型: array<System.Boolean[]%
このメソッドが戻るとき、コンポーネント ホストが指定された数の入力を処理できるかどうかを示すブール値の配列が含まれています。 このパラメーターは初期化せずに渡されます。