ActiveXScriptTask.AcceptBreakpointManager Method
Passes a BreakpointManager to a task. The task will use the breakpoint manager to create, remove, and check the status of breakpoints. This method is called by the runtime and is not used in code.
Namespace: Microsoft.SqlServer.Dts.Tasks.ActiveXScriptTask
Assembly: Microsoft.SqlServer.ActiveXScriptTask (in Microsoft.SqlServer.ActiveXScriptTask.dll)
Syntax
'Declaration
Public Sub AcceptBreakpointManager ( _
breakPointMgr As BreakpointManager _
)
'Usage
Dim instance As ActiveXScriptTask
Dim breakPointMgr As BreakpointManager
instance.AcceptBreakpointManager(breakPointMgr)
public void AcceptBreakpointManager(
BreakpointManager breakPointMgr
)
public:
virtual void AcceptBreakpointManager(
BreakpointManager^ breakPointMgr
) sealed
abstract AcceptBreakpointManager :
breakPointMgr:BreakpointManager -> unit
override AcceptBreakpointManager :
breakPointMgr:BreakpointManager -> unit
public final function AcceptBreakpointManager(
breakPointMgr : BreakpointManager
)
Parameters
- breakPointMgr
Type: Microsoft.SqlServer.Dts.Runtime.BreakpointManager
The breakpoint manager that is specific to the task.
Implements
IDTSBreakpointSite.AcceptBreakpointManager(BreakpointManager)
Remarks
Important
This feature will be removed in the next version of Microsoft SQL Server. Do not use this feature in new development work, and modify applications that currently use this feature as soon as possible.
See Also