IDTSOutput100.SynchronousInputID Property

 

Applies To: SQL Server 2016 Preview

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

[DispIdAttribute(102)]
int SynchronousInputID {
    [DispIdAttribute(102)]
    get;
    [DispIdAttribute(102)]
    set;
}
[DispIdAttribute(102)]
property int SynchronousInputID {
    [DispIdAttribute(102)]
    int get();
    [DispIdAttribute(102)]
    void set(int value);
}
[<DispIdAttribute(102)>]
abstract SynchronousInputID : int with get, set
<DispIdAttribute(102)>
Property SynchronousInputID As Integer

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.

See Also

IDTSOutput100 Interface
Microsoft.SqlServer.Dts.Pipeline.Wrapper Namespace

Return to top