BreakpointManager 클래스

Manages all the breakpoints that are set in on a task. This class cannot be inherited.

상속 계층

System.Object
  Microsoft.SqlServer.Dts.Runtime.DtsObject
    Microsoft.SqlServer.Dts.Runtime.BreakpointManager

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

구문

‘선언
Public NotInheritable Class BreakpointManager _
    Inherits DtsObject
‘사용 방법
Dim instance As BreakpointManager
public sealed class BreakpointManager : DtsObject
public ref class BreakpointManager sealed : public DtsObject
[<SealedAttribute>]
type BreakpointManager =  
    class 
        inherit DtsObject 
    end
public final class BreakpointManager extends DtsObject

BreakpointManager 유형에서 다음 멤버를 표시합니다.

메서드

  이름 설명
공용 메서드 ClearBreakpointTargets Removes all the breakpoints set in a task.
공용 메서드 CreateBreakpointTarget Creates a new breakpoint in the task with the specified breakpoint ID and description.
공용 메서드 Equals Determines whether two object instances are equal. (DtsObject에서 상속됨)
공용 메서드 GetBreakpointTarget Returns the breakpoint object for a specific breakpoint ID.
공용 메서드 GetHashCode Returns the hash code for this instance. (DtsObject에서 상속됨)
공용 메서드 GetType (Object에서 상속됨)
공용 메서드 IsBreakpointTargetEnabled A Boolean that indicates if the breakpoint is enabled.
공용 메서드 RemoveBreakpointTarget Removes a previously created breakpoint from a task.
공용 메서드 ToString (Object에서 상속됨)

맨 위로 이동

주의

Tasks create breakpoints by calling the CreateBreakpointTarget method of the BreakpointManager and providing an ID and description of the breakpoint as parameters to the method. When a task reaches the point in its code that contains the breakpoint, it evaluates the breakpoint to see if it should suspend execution. Execution is suspended if the IsBreakpointTargetEnabled is true. If true, the task notifies the run-time engine by raising the OnBreakpointHit event. For information about custom breakpoints, see 사용자 지정 태스크에 디버깅 지원 추가.

스레드 보안

이 유형의 모든 공용 static(Visual Basic에서는 Shared) 멤버는 스레드로부터 안전합니다. 인스턴스 멤버는 스레드로부터의 안전성이 보장되지 않습니다.

참고 항목

참조

Microsoft.SqlServer.Dts.Runtime 네임스페이스