DtsTaskAttribute.RequiredProductLevel Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta un valore dell'enumerazione DTSProductLevel per consentire di indicare un prodotto specifico con cui viene utilizzata questa attività nell'attributo.
public:
property Microsoft::SqlServer::Dts::Runtime::DTSProductLevel RequiredProductLevel { Microsoft::SqlServer::Dts::Runtime::DTSProductLevel get(); void set(Microsoft::SqlServer::Dts::Runtime::DTSProductLevel value); };
public Microsoft.SqlServer.Dts.Runtime.DTSProductLevel RequiredProductLevel { get; set; }
member this.RequiredProductLevel : Microsoft.SqlServer.Dts.Runtime.DTSProductLevel with get, set
Public Property RequiredProductLevel As DTSProductLevel
Valore della proprietà
Esempio
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