IDTSEvents100.OnPreValidate 메서드
이 API는 SQL Server 2012 인프라를 지원하기 위한 것으로 코드에서 직접 사용할 수 없습니다.
Called when the actual validation logic of the task starts. This event is raised when the validation of the task host or container begins.
네임스페이스: Microsoft.SqlServer.Dts.Runtime.Wrapper
어셈블리: Microsoft.SqlServer.DTSRuntimeWrap(Microsoft.SqlServer.DTSRuntimeWrap.dll)
구문
‘선언
Sub OnPreValidate ( _
pExec As IDTSExecutable100, _
ByRef pbFireAgain As Boolean _
)
‘사용 방법
Dim instance As IDTSEvents100
Dim pExec As IDTSExecutable100
Dim pbFireAgain As Boolean
instance.OnPreValidate(pExec, pbFireAgain)
void OnPreValidate(
IDTSExecutable100 pExec,
ref bool pbFireAgain
)
void OnPreValidate(
[InAttribute] IDTSExecutable100^ pExec,
bool% pbFireAgain
)
abstract OnPreValidate :
pExec:IDTSExecutable100 *
pbFireAgain:bool byref -> unit
function OnPreValidate(
pExec : IDTSExecutable100,
pbFireAgain : boolean
)
매개 변수
- pExec
유형: Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSExecutable100
The task for which this is being called.
- pbFireAgain
유형: System.Boolean%
A Boolean that indicates this should continue firing or stop firing. A value of true indicates that it should continue firing.
주의
For more information, see IDTSEvents.