Udostępnij za pośrednictwem


Konstruktor DtsTaskAttribute

Inicjuje nowe wystąpienie DtsTaskAttribute klasy

Przestrzeń nazw:  Microsoft.SqlServer.Dts.Runtime
Zestaw:  Microsoft.SqlServer.ManagedDTS (w Microsoft.SqlServer.ManagedDTS.dll)

Składnia

'Deklaracja
Public Sub New
'Użycie

Dim instance As New DtsTaskAttribute()
public DtsTaskAttribute()
public:
DtsTaskAttribute()
new : unit -> DtsTaskAttribute
public function DtsTaskAttribute()

Przykłady

W poniższym przykładzie przedstawiono klasy, która implementuje ten atrybut.Atrybuty te umożliwiają runtime wyliczanie zadania i kojarzenie zadań interfejs użytkownika z zadaniem.UITypeName Musi odpowiadać nazwie interfejs użytkownika zadań w obszarze nazw zadań niestandardowych.

using System;
using Microsoft.SqlServer.Dts.Runtime;
namespace Microsoft.SSIS.Samples
{
  [DtsTask
  (
   DisplayName = "MyTask",
   IconResource = "MyTask.MyTaskIcon.ico",
   UITypeName = "MyNamespace.MyCustomTask,MyCustomTask," +
   "Version=1.0.0.0," +
   "Culture = Neutral," +
   "PublicKeyToken = 12345abc6789de01",
   TaskType = "PackageMaintenance",
   TaskContact = "MyTask; company name; any other information",
   RequiredProductLevel = DTSProductLevel.None
   )]
  public class MyTask : Task
  {
    // Your code here.
  }
}
Imports System
Imports Microsoft.SqlServer.Dts.Runtime

<DtsTask(DisplayName:="MyTask", _
 IconResource:="MyTask.MyTaskIcon.ico", _
 UITypeName:="MyNamespace.MyCustomTask,MyCustomTask," & _
 "Version=1.0.0.0,Culture=Neutral," & _
 "PublicKeyToken=12345abc6789de01", _
 TaskType:="PackageMaintenance", _
 TaskContact:="MyTask; company name; any other information", _
 RequiredProductLevel:=DTSProductLevel.None)> _
Public Class MyTask
  Inherits Task

  ' Your code here.

End Class 'MyTask