IDTSOutput100 接口
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
public interface class IDTSOutput100 : Microsoft::SqlServer::Dts::Pipeline::Wrapper::Sql2014::IDTSObject100
[System.Runtime.InteropServices.Guid("48009B5F-4ECF-4855-95B2-69F6E4CF32F1")]
[System.Runtime.InteropServices.TypeLibType(System.Runtime.InteropServices.TypeLibTypeFlags.FDispatchable | System.Runtime.InteropServices.TypeLibTypeFlags.FDual)]
public interface IDTSOutput100 : Microsoft.SqlServer.Dts.Pipeline.Wrapper.Sql2014.IDTSObject100
[<System.Runtime.InteropServices.Guid("48009B5F-4ECF-4855-95B2-69F6E4CF32F1")>]
[<System.Runtime.InteropServices.TypeLibType(System.Runtime.InteropServices.TypeLibTypeFlags.FDispatchable | System.Runtime.InteropServices.TypeLibTypeFlags.FDual)>]
type IDTSOutput100 = interface
interface IDTSObject100
Public Interface IDTSOutput100
Implements IDTSObject100
- 属性
- 实现
示例
下面的代码示例演示了一个组件,该组件创建 IDTSOutput100,该 IDTSOutput100 在调用 ProvideComponentProperties 方法期间与其输入同步。
public override void ProvideComponentProperties()
{
IDTSInput100 input = ComponentMetaData.InputCollection.New();
input.Name = "Input";
IDTSOutput100 output = ComponentMetaData.OutputCollection.New();
output.Name = "Output";
output.SynchronousInputID = input.ID;
}
Public Overrides Sub ProvideComponentProperties()
Dim input As IDTSInput100 = ComponentMetaData.InputCollection.New
input.Name = "Input"
Dim output As IDTSOutput100 = ComponentMetaData.OutputCollection.New
output.Name = "Output"
output.SynchronousInputID = input.ID
End Sub
注解
对象 IDTSOutput100 包含数据流组件公开的 IDTSOutputColumn100 列的集合。 输出连接到下游组件的 , IDTSInput100 以建立两个组件之间的数据流。
输出可以是与 对象同步 IDTSInput100 的,也可以是异步的,由 SynchronousInputID 属性指定。
输出列集合中的列可用于下游组件。 在设计时,将从集合中添加和删除列。