Partilhar via


BreakpointManager.RemoveBreakpointTarget Method

Removes a previously created breakpoint from a task.

Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)

Syntax

'Declaration
Public Sub RemoveBreakpointTarget ( _
    breakpointID As Integer _
)
public void RemoveBreakpointTarget (
    int breakpointID
)
public:
void RemoveBreakpointTarget (
    int breakpointID
)
public void RemoveBreakpointTarget (
    int breakpointID
)
public function RemoveBreakpointTarget (
    breakpointID : int
)

Parameters

  • breakpointID
    The ID of the breakpoint to remove.

Example

The following example shows a task removing a breakpoint. The variable mybpManager is the breakpoint manager for the task.

mybpManager.RemoveBreakpointTarget(breakpointID);
mybpManager.RemoveBreakpointTarget(breakpointID)

Thread Safety

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.

Platforms

Development Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.

Target Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.

See Also

Reference

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