Compartilhar via


Classe DtsPipelineComponentAttribute

Contains design-time information about a PipelineComponent object.

Hierarquia de herança

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

Namespace:  Microsoft.SqlServer.Dts.Pipeline
Assembly:  Microsoft.SqlServer.PipelineHost (em Microsoft.SqlServer.PipelineHost.dll)

Sintaxe

'Declaração
<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

O tipo DtsPipelineComponentAttribute expõe os membros a seguir.

Construtores

  Nome Descrição
Método público DtsPipelineComponentAttribute Initializes a new instance of the DtsPipelineComponentAttribute class.

Início

Propriedades

  Nome Descrição
Propriedade pública ComponentType Identifies a component as a source, destination, or transformation.
Propriedade pública CurrentVersion Gets or sets the version of the component.
Propriedade pública Description Gets or sets the description of the DtsLocalizableAttribute. (Herdado de DtsLocalizableAttribute.)
Propriedade pública DisplayName Gets or sets the display name of the DtsLocalizableAttribute. (Herdado de DtsLocalizableAttribute.)
Propriedade pública IconResource Gets or sets the icon used to represent the component in the toolbox.
Propriedade pública LocalizationType Gets or sets the class that supplies values for the DtsLocalizableAttribute. (Herdado de DtsLocalizableAttribute.)
Propriedade pública NoEditor Gets or sets a value indicating whether the Advanced Properties editor is available for the component.
Propriedade pública RequiredProductLevel Gets or sets a value indicating the required SQL Server 2005 product level for the data flow component.
Propriedade pública ShapeProgID Gets or sets the designer shape of the component.
Propriedade pública TypeId (Herdado de Attribute.)
Propriedade pública UITypeName Gets or sets the qualified name of the assembly implementing the user interface of the component.

Início

Métodos

  Nome Descrição
Método público Equals (Herdado de Attribute.)
Método protegido Finalize (Herdado de Object.)
Método público GetHashCode (Herdado de Attribute.)
Método público GetType (Herdado de Object.)
Método público IsDefaultAttribute (Herdado de Attribute.)
Método público Match (Herdado de Attribute.)
Método protegido MemberwiseClone (Herdado de Object.)
Método público ToString (Herdado de Object.)

Início

Implementações de interfaces explícitas

  Nome Descrição
Implementações de interfaces explícitasMétodo privado _Attribute. . :: . .GetIDsOfNames (Herdado de Attribute.)
Implementações de interfaces explícitasMétodo privado _Attribute. . :: . .GetTypeInfo (Herdado de Attribute.)
Implementações de interfaces explícitasMétodo privado _Attribute. . :: . .GetTypeInfoCount (Herdado de Attribute.)
Implementações de interfaces explícitasMétodo privado _Attribute. . :: . .Invoke (Herdado de Attribute.)

Início

Comentários

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.

Exemplos

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

Segurança de thread

Qualquer membro público static (Shared no Visual Basic) desse tipo é seguro para threads. Não há garantia de que qualquer membro de instância seja seguro para threads.

Consulte também

Referência