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
'Deklaracja
<DispIdAttribute(102)> _
Property SynchronousInputID As Integer
[DispIdAttribute(102)]
int SynchronousInputID { get; set; }
[DispIdAttribute(102)]
property int SynchronousInputID {
int get ();
void set ([InAttribute] int plSynchronousInputID);
}
/** @property */
/** @attribute DispIdAttribute(102) */
int get_SynchronousInputID ()
/** @property */
/** @attribute DispIdAttribute(102) */
void set_SynchronousInputID (/** @attribute InAttribute() */ int plSynchronousInputID)
DispIdAttribute(102)
function get SynchronousInputID () : int
DispIdAttribute(102)
function set SynchronousInputID (plSynchronousInputID : int)
Property Value
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.
Thread Safety
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
Development Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.
Target Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.