IDTSOutput100.SynchronousInputID Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the ID of an IDTSInput100 that is synchronous to an IDTSOutput100.
public:
property int SynchronousInputID { int get(); void set(int value); };
[System.Runtime.InteropServices.DispId(102)]
public int SynchronousInputID { [System.Runtime.InteropServices.DispId(102)] get; [System.Runtime.InteropServices.DispId(102)] set; }
[<System.Runtime.InteropServices.DispId(102)>]
[<get: System.Runtime.InteropServices.DispId(102)>]
[<set: System.Runtime.InteropServices.DispId(102)>]
member this.SynchronousInputID : int with get, set
Public Property SynchronousInputID As Integer
Property Value
The ID of the IDTSInput100 object that is synchronous to the IDTSOutput100 object. The default ID is 0.
- Attributes
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.