ScriptTask.AcceptBreakpointManager(BreakpointManager) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Passes a BreakpointManager to the task. This method is called by the runtime and is not used in code.
public:
virtual void AcceptBreakpointManager(Microsoft::SqlServer::Dts::Runtime::BreakpointManager ^ bpManager);
public void AcceptBreakpointManager (Microsoft.SqlServer.Dts.Runtime.BreakpointManager bpManager);
abstract member AcceptBreakpointManager : Microsoft.SqlServer.Dts.Runtime.BreakpointManager -> unit
override this.AcceptBreakpointManager : Microsoft.SqlServer.Dts.Runtime.BreakpointManager -> unit
Public Sub AcceptBreakpointManager (bpManager As BreakpointManager)
Parameters
- bpManager
- BreakpointManager
The breakpoint manager specific for this task.
Implements
Remarks
The IDTSBreakpointSite interface defines this method, which is inherited by tasks and called by the run-time engine during task creation. The method takes the BreakpointManager object as a parameter, which is then used by each task to create and manage its breakpoints.