IDTSOutput90 Interface
Contains the collection of IDTSOutputColumn90 columns available to downstream components in a graph.
네임스페이스: Microsoft.SqlServer.Dts.Pipeline.Wrapper
어셈블리: Microsoft.SqlServer.DTSPipelineWrap (in microsoft.sqlserver.dtspipelinewrap.dll)
구문
‘선언
<GuidAttribute("5A3F4E89-4A68-4D16-A893-366A39AF9AE6")> _
<TypeLibTypeAttribute(4160)> _
Public Interface IDTSOutput90
Inherits IDTSObject90
[GuidAttribute("5A3F4E89-4A68-4D16-A893-366A39AF9AE6")]
[TypeLibTypeAttribute(4160)]
public interface IDTSOutput90 : IDTSObject90
[GuidAttribute(L"5A3F4E89-4A68-4D16-A893-366A39AF9AE6")]
[TypeLibTypeAttribute(4160)]
public interface class IDTSOutput90 : IDTSObject90
/** @attribute GuidAttribute("5A3F4E89-4A68-4D16-A893-366A39AF9AE6") */
/** @attribute TypeLibTypeAttribute(4160) */
public interface IDTSOutput90 extends IDTSObject90
GuidAttribute("5A3F4E89-4A68-4D16-A893-366A39AF9AE6")
TypeLibTypeAttribute(4160)
public interface IDTSOutput90 extends IDTSObject90
주의
The IDTSOutput90 object contains the collection of IDTSOutputColumn90 columns exposed by a data flow component. The output is connected to the IDTSInput90 of a downstream component to establish the flow of data between two components.
An output can be either synchronous to an IDTSInput90 object, or asynchronous, and is specified by the SynchronousInputID property.
The columns in the output column collection are available to downstream components. Columns are added and removed from the collection at design time.
예
The following code example demonstrates a component that creates an IDTSOutput90 that is synchronous to its input during a call to the ProvideComponentProperties method.
public override void ProvideComponentProperties()
{
IDTSInput90 input = ComponentMetaData.InputCollection.New();
input.Name = "Input";
IDTSOutput90 output = ComponentMetaData.OutputCollection.New();
output.Name = "Output";
output.SynchronousInputID = input.ID;
}
Public Overrides Sub ProvideComponentProperties()
Dim input As IDTSInput90 = ComponentMetaData.InputCollection.New
input.Name = "Input"
Dim output As IDTSOutput90 = ComponentMetaData.OutputCollection.New
output.Name = "Output"
output.SynchronousInputID = input.ID
End Sub
플랫폼
개발 플랫폼
지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
대상 플랫폼
지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
참고 항목
참조
IDTSOutput90 Members
Microsoft.SqlServer.Dts.Pipeline.Wrapper Namespace