IDTSOutput100.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.

참고 항목

참조

IDTSOutput100 인터페이스

Microsoft.SqlServer.Dts.Pipeline.Wrapper 네임스페이스