다음을 통해 공유


BreakpointManager.IsBreakpointTargetEnabled Method

A Boolean that indicates if the breakpoint is enabled.

네임스페이스: Microsoft.SqlServer.Dts.Runtime
어셈블리: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)

구문

‘선언
Public Function IsBreakpointTargetEnabled ( _
    breakpointID As Integer _
) As Boolean
public bool IsBreakpointTargetEnabled (
    int breakpointID
)
public:
bool IsBreakpointTargetEnabled (
    int breakpointID
)
public boolean IsBreakpointTargetEnabled (
    int breakpointID
)
public function IsBreakpointTargetEnabled (
    breakpointID : int
) : boolean

매개 변수

  • breakpointID
    The ID of the breakpoint that you want to verify if it is enabled or not.

반환 값

A Boolean that indicates if the breakpoint is enabled. A value of true indicates that a previously created breakpoint has been enabled by the client task.

주의

If true, the task notifies the Data Transformation Run-time engine by raising the OnBreakpointHit event.

The following example shows a custom task checking for a breakpoint after verifying that the breakpoint target is enabled. This code is in the custom task's Execute method, where the variable, bpm, is the breakpoint manager for the task.

if( this.bpm.IsBreakpointTargetEnabled( 1 ) == true )
      events.OnBreakpointHit( this.bpm.GetBreakpointTarget( 1 ) );
If Me.bpm.IsBreakpointTargetEnabled(1) = True Then
      events.OnBreakpointHit(Me.bpm.GetBreakpointTarget(1))
End If

스레드 보안

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

플랫폼

개발 플랫폼

지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.

대상 플랫폼

지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.

참고 항목

참조

BreakpointManager Class
BreakpointManager Members
Microsoft.SqlServer.Dts.Runtime Namespace