IDTSOutput100.SynchronousInputID Property

Gets or sets the ID of an IDTSInput100 that is synchronous to an IDTSOutput100.

Namespace:  Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly:  Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)

Syntax

'Declaration
Property SynchronousInputID As Integer
    Get
    Set
'Usage
Dim instance As IDTSOutput100
Dim value As Integer

value = instance.SynchronousInputID

instance.SynchronousInputID = value
int SynchronousInputID { get; set; }
property int SynchronousInputID {
    int get ();
    void set (int value);
}
abstract SynchronousInputID : int with get, set
function get SynchronousInputID () : int
function set SynchronousInputID (value : int)

Property Value

Type: System.Int32
The ID of the IDTSInput100 object that is synchronous to the IDTSOutput100 object. The default ID is 0.

Remarks

If the SynchronousInputID property is zero, the output is asynchronous. This means that the component developer must add the rows that the component receives in the input buffer that is received in the ProcessInput method to the output buffer that was received during PrimeOutput.

Conversely, if SynchronousInputID contains the ID of an IDTSInput100 object, PrimeOutput is not called for the component, and the data flow task automatically adds the rows from the input buffer to the output buffer of the component.