Freigeben über


DtsPipelineComponentAttribute-Klasse

Contains design-time information about a PipelineComponent object.

Vererbungshierarchie

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

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

Syntax

'Declaration
<AttributeUsageAttribute(AttributeTargets.Class, Inherited := False, AllowMultiple := False)> _
Public Class DtsPipelineComponentAttribute _
    Inherits DtsLocalizableAttribute
'Usage
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

Der DtsPipelineComponentAttribute-Typ macht folgende Elemente verfügbar.

Konstruktoren

  Name Beschreibung
Öffentliche Methode DtsPipelineComponentAttribute Initializes a new instance of the DtsPipelineComponentAttribute class.

Zum Anfang

Eigenschaften

  Name Beschreibung
Öffentliche Eigenschaft ComponentType Identifies a component as a source, destination, or transformation.
Öffentliche Eigenschaft CurrentVersion Gets or sets the version of the component.
Öffentliche Eigenschaft Description Gets or sets the description of the DtsLocalizableAttribute. (Geerbt von DtsLocalizableAttribute.)
Öffentliche Eigenschaft DisplayName Gets or sets the display name of the DtsLocalizableAttribute. (Geerbt von DtsLocalizableAttribute.)
Öffentliche Eigenschaft HelpCollection Gets or sets the help collection from which to retrieve the help.
Öffentliche Eigenschaft HelpKeyword Gets or sets the help keyword associated with the component.
Öffentliche Eigenschaft IconResource Gets or sets the icon used to represent the component in the toolbox.
Öffentliche Eigenschaft LocalizationType Gets or sets the class that supplies values for the DtsLocalizableAttribute. (Geerbt von DtsLocalizableAttribute.)
Öffentliche Eigenschaft NoEditor Gets or sets a value indicating whether the Advanced Properties editor is available for the component.
Öffentliche Eigenschaft RequiredProductLevel Gets or sets a value indicating the required SQL Server 2005 product level for the data flow component.
Öffentliche Eigenschaft SamplesTag Gets or sets the samples tag from the component.
Öffentliche Eigenschaft ShapeProgID Gets or sets the designer shape of the component.
Öffentliche Eigenschaft 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.
Öffentliche Eigenschaft TypeId (Geerbt von Attribute.)
Öffentliche Eigenschaft UITypeName Gets or sets the qualified name of the assembly implementing the user interface of the component.

Zum Anfang

Methoden

  Name Beschreibung
Öffentliche Methode Equals (Geerbt von Attribute.)
Geschützte Methode Finalize (Geerbt von Object.)
Öffentliche Methode GetHashCode (Geerbt von Attribute.)
Öffentliche Methode GetType (Geerbt von Object.)
Öffentliche Methode IsDefaultAttribute (Geerbt von Attribute.)
Öffentliche Methode Match (Geerbt von Attribute.)
Geschützte Methode MemberwiseClone (Geerbt von Object.)
Öffentliche Methode ToString (Geerbt von Object.)

Zum Anfang

Explizite Schnittstellenimplementierungen

  Name Beschreibung
Explizite SchnittstellenimplementierungPrivate Methode _Attribute.GetIDsOfNames (Geerbt von Attribute.)
Explizite SchnittstellenimplementierungPrivate Methode _Attribute.GetTypeInfo (Geerbt von Attribute.)
Explizite SchnittstellenimplementierungPrivate Methode _Attribute.GetTypeInfoCount (Geerbt von Attribute.)
Explizite SchnittstellenimplementierungPrivate Methode _Attribute.Invoke (Geerbt von Attribute.)

Zum Anfang

Hinweise

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.

Beispiele

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

Threadsicherheit

Alle öffentlichen static (Shared in Visual Basic)-Elemente dieses Typs sind Threadsicher. Für Instanzelemente wird die Threadsicherheit nicht gewährleistet.

Siehe auch

Verweis

Microsoft.SqlServer.Dts.Pipeline-Namespace