DtsTaskAttribute.RequiredProductLevel Property
Gets or sets a value from the DTSProductLevel enumeration so you can specify a specific product that this task is used with in the attribute.
命名空间: Microsoft.SqlServer.Dts.Runtime
程序集: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)
语法
声明
Public Property RequiredProductLevel As DTSProductLevel
public DTSProductLevel RequiredProductLevel { get; set; }
public:
property DTSProductLevel RequiredProductLevel {
DTSProductLevel get ();
void set (DTSProductLevel value);
}
/** @property */
public DTSProductLevel get_RequiredProductLevel ()
/** @property */
public void set_RequiredProductLevel (DTSProductLevel value)
public function get RequiredProductLevel () : DTSProductLevel
public function set RequiredProductLevel (value : DTSProductLevel)
备注
已更新的示例代码:2007 年 9 月 15 日
示例
using System;
using Microsoft.SqlServer.Dts.Runtime;
namespace Microsoft.SSIS.Samples
{
[DtsTask
(
DisplayName = "MyTask",
IconResource = "MyTask.MyTaskIcon.ico",
UITypeName = "My Custom Task," +
"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:="My Custom Task," & _
"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
线程安全
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
平台
开发平台
有关支持的平台列表,请参阅安装 SQL Server 2005 的硬件和软件要求。
目标平台
有关支持的平台列表,请参阅安装 SQL Server 2005 的硬件和软件要求。
请参阅
参考
DtsTaskAttribute Class
DtsTaskAttribute Members
Microsoft.SqlServer.Dts.Runtime Namespace