Compartir a través de


Clase DtsPipelineComponentAttribute

Contains design-time information about a PipelineComponent object.

Jerarquía de herencia

System.Object
  System.Attribute
    Microsoft.SqlServer.Dts.Pipeline.Localization.DtsLocalizableAttribute
      Microsoft.SqlServer.Dts.Pipeline.DtsPipelineComponentAttribute

Espacio de nombres:  Microsoft.SqlServer.Dts.Pipeline
Ensamblado:  Microsoft.SqlServer.PipelineHost (en Microsoft.SqlServer.PipelineHost.dll)

Sintaxis

'Declaración
<AttributeUsageAttribute(AttributeTargets.Class, Inherited := False, AllowMultiple := False)> _
Public Class DtsPipelineComponentAttribute _
    Inherits DtsLocalizableAttribute
'Uso
Dim instance As DtsPipelineComponentAttribute
[AttributeUsageAttribute(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
public class DtsPipelineComponentAttribute : DtsLocalizableAttribute
[AttributeUsageAttribute(AttributeTargets::Class, Inherited = false, AllowMultiple = false)]
public ref class DtsPipelineComponentAttribute : public DtsLocalizableAttribute
[<AttributeUsageAttribute(AttributeTargets.Class, Inherited = false, AllowMultiple = false)>]
type DtsPipelineComponentAttribute =  
    class 
        inherit DtsLocalizableAttribute 
    end
public class DtsPipelineComponentAttribute extends DtsLocalizableAttribute

El tipo DtsPipelineComponentAttribute expone los siguientes miembros.

Constructores

  Nombre Descripción
Método público DtsPipelineComponentAttribute Initializes a new instance of the DtsPipelineComponentAttribute class.

Arriba

Propiedades

  Nombre Descripción
Propiedad pública ComponentType Identifies a component as a source, destination, or transformation.
Propiedad pública CurrentVersion Gets or sets the version of the component.
Propiedad pública Description Gets or sets the description of the DtsLocalizableAttribute. (Se hereda de DtsLocalizableAttribute.)
Propiedad pública DisplayName Gets or sets the display name of the DtsLocalizableAttribute. (Se hereda de DtsLocalizableAttribute.)
Propiedad pública HelpCollection Gets or sets the help collection from which to retrieve the help.
Propiedad pública HelpKeyword Gets or sets the help keyword associated with the component.
Propiedad pública IconResource Gets or sets the icon used to represent the component in the toolbox.
Propiedad pública LocalizationType Gets or sets the class that supplies values for the DtsLocalizableAttribute. (Se hereda de DtsLocalizableAttribute.)
Propiedad pública NoEditor Gets or sets a value indicating whether the Advanced Properties editor is available for the component.
Propiedad pública RequiredProductLevel Gets or sets a value indicating the required SQL Server 2005 product level for the data flow component.
Propiedad pública SamplesTag Gets or sets the samples tag from the component.
Propiedad pública ShapeProgID Gets or sets the designer shape of the component.
Propiedad pública SupportsBackPressure Identifies the component as one that supports more than one input, and implements the optional methods for handling excessive memory usage if the inputs produce data at uneven rates.
Propiedad pública TypeId (Se hereda de Attribute.)
Propiedad pública UITypeName Gets or sets the qualified name of the assembly implementing the user interface of the component.

Arriba

Métodos

  Nombre Descripción
Método público Equals (Se hereda de Attribute.)
Método protegido Finalize (Se hereda de Object.)
Método público GetHashCode (Se hereda de Attribute.)
Método público GetType (Se hereda de Object.)
Método público IsDefaultAttribute (Se hereda de Attribute.)
Método público Match (Se hereda de Attribute.)
Método protegido MemberwiseClone (Se hereda de Object.)
Método público ToString (Se hereda de Object.)

Arriba

Implementaciones de interfaces explícitas

  Nombre Descripción
Implementación de interfaces explícitasMétodo privado _Attribute.GetIDsOfNames (Se hereda de Attribute.)
Implementación de interfaces explícitasMétodo privado _Attribute.GetTypeInfo (Se hereda de Attribute.)
Implementación de interfaces explícitasMétodo privado _Attribute.GetTypeInfoCount (Se hereda de Attribute.)
Implementación de interfaces explícitasMétodo privado _Attribute.Invoke (Se hereda de Attribute.)

Arriba

Comentarios

This attribute is applied to managed data flow components that derive from PipelineComponent. The attribute identifies a class as a managed data flow component and provides information through its properties that controls how the SSIS Designer displays and interacts with the object.

Ejemplos

The following example shows a managed data flow component that implements this attribute.

[DtsPipelineComponent(DisplayName="MyComponent", ComponentType=ComponentType.Transform)]
public class MyComponent: PipelineComponent
{}
DtsPipelineComponent(DisplayName="MyComponent", ComponentType=ComponentType.Transform)> _ 
Public Class MyComponent 
Inherits PipelineComponent 
End Class

Seguridad para subprocesos

Cualquier miembro público static (Shared en Visual Basic) de este tipo es seguro para subprocesos. No se garantiza que los miembros de instancia sean seguros para subprocesos.

Vea también

Referencia

Espacio de nombres Microsoft.SqlServer.Dts.Pipeline