BreakpointManager.GetBreakpointTarget Method
Returns the breakpoint object for a specific breakpoint ID.
Пространство имен: Microsoft.SqlServer.Dts.Runtime
Сборка: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)
Синтаксис
'Декларация
Public Function GetBreakpointTarget ( _
breakpointID As Integer _
) As BreakpointTarget
public BreakpointTarget GetBreakpointTarget (
int breakpointID
)
public:
BreakpointTarget^ GetBreakpointTarget (
int breakpointID
)
public BreakpointTarget GetBreakpointTarget (
int breakpointID
)
public function GetBreakpointTarget (
breakpointID : int
) : BreakpointTarget
Параметры
- breakpointID
The ID of the breakpoint to return.
Возвращаемое значение
A BreakpointTarget object.
Пример
The following example shows a custom task checking for a breakpoint. 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.
Платформы
Платформы разработки
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
Целевые платформы
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
См. также
Справочник
BreakpointManager Class
BreakpointManager Members
Microsoft.SqlServer.Dts.Runtime Namespace