Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Diese API unterstützt die SQL Server 2012-Infrastruktur und ist nicht zur direkten Verwendung im Code bestimmt.
Indicates whether component host can process the specified number of inputs.
Namespace: Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly: Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)
Syntax
'Declaration
Sub HostCanProcess ( _
pWrapper As IDTSManagedComponentWrapper100, _
inputCount As Integer, _
inputIDs As Integer(), _
ByRef pCanProcess As Boolean() _
)
'Usage
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[]
)
Parameter
- pWrapper
Typ: Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSManagedComponentWrapper100
The managed component wrapper.
- inputCount
Typ: System.Int32
The input count.
- inputIDs
Typ: array<System.Int32[]
When this method returns, contains an array of input identifiers. This parameter is passed uninitialized.
- pCanProcess
Typ: array<System.Boolean[]%
When this method returns, contains an array of Boolean that indicates if the host component can process the specified number of inputs. This parameter is passed uninitialized.