EventInfo.AllowEventHandlers 속성
Returns a Boolean that indicates if the development tool, SQL Server Data Tools(SSDT), will allow event handlers to be created in the package. This property applies to custom events created for a custom task.
네임스페이스: Microsoft.SqlServer.Dts.Runtime
어셈블리: Microsoft.SqlServer.ManagedDTS(Microsoft.SqlServer.ManagedDTS.dll)
구문
‘선언
Public ReadOnly Property AllowEventHandlers As Boolean
Get
‘사용 방법
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
속성 값
유형: 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 사용자 지정 태스크에서 이벤트 발생 및 정의.