共用方式為


SynchronousInputID 屬性

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

命名空間:  Microsoft.SqlServer.Dts.Pipeline.Wrapper
組件:  Microsoft.SqlServer.DTSPipelineWrap (在 Microsoft.SqlServer.DTSPipelineWrap.dll 中)

語法

'宣告
Property SynchronousInputID As Integer
    Get
    Set
'用途
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)

屬性值

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

備註

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.