Share via


DtsTaskAttribute.RequiredProductLevel Property

Definition

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.

C#
public Microsoft.SqlServer.Dts.Runtime.DTSProductLevel RequiredProductLevel { get; set; }

Property Value

Examples

C#
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.  
  }  
}  

Applies to

Product Versions
SQL Server .NET SDK 2016, 2017, 2019