Propriedade do RDL EventInfo.AllowEventHandlers
Returns a Boolean that indicates if the development tool, SSDT (SQL Server Data Tools), will allow event handlers to be created in the package. This property applies to custom events created for a custom task.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (em Microsoft.SqlServer.ManagedDTS.dll)
Sintaxe
'Declaração
Public ReadOnly Property AllowEventHandlers As Boolean
Get
'Uso
Dim instance As EventInfo
Dim value As Boolean
value = instance.AllowEventHandlers
public bool AllowEventHandlers { get; }
public:
property bool AllowEventHandlers {
bool get ();
}
member AllowEventHandlers : bool
function get AllowEventHandlers () : boolean
Valor da propriedade
Tipo: System.Boolean
Returns a Boolean that indicates if the development tool will allow event handler objects to be created for the event. If true, event handler objects can be created for the event. This property applies only to custom events that you have created for your custom task. For more information, see Gerando e definindo eventos em uma tarefa personalizada.