DtsForEachEnumeratorAttribute Constructor
Initializes a new instance of the DtsForEachEnumeratorAttribute.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
Syntax
'Declaration
Public Sub New
'Usage
Dim instance As New DtsForEachEnumeratorAttribute()
public DtsForEachEnumeratorAttribute()
public:
DtsForEachEnumeratorAttribute()
new : unit -> DtsForEachEnumeratorAttribute
public function DtsForEachEnumeratorAttribute()
Remarks
Attributes are initialized with constructors in the same way as traditional classes.
Examples
The following code sample creates a new instance of the attribute class.
Dim myAttr As New MyAttribute()
MyAttribute myAttr = new MyAttribute();