PackageClass.GetBreakpointTargets 메서드
이 API는 SQL Server 2012 인프라를 지원하기 위한 것으로 코드에서 직접 사용할 수 없습니다.
Returns an IDTSBreakpointTargets100 collection. Depending on the setting of the onlyEnabled parameter, the collection contains all breakpoint targets in the package, or only enabled breakpoint targets.
네임스페이스: Microsoft.SqlServer.Dts.Runtime.Wrapper
어셈블리: Microsoft.SqlServer.DTSRuntimeWrap(Microsoft.SqlServer.DTSRuntimeWrap.dll)
구문
‘선언
Public Overridable Function GetBreakpointTargets ( _
pBreakpointSite As IDTSBreakpointSite100, _
onlyEnabled As Boolean _
) As IDTSBreakpointTargets100
‘사용 방법
Dim instance As PackageClass
Dim pBreakpointSite As IDTSBreakpointSite100
Dim onlyEnabled As Boolean
Dim returnValue As IDTSBreakpointTargets100
returnValue = instance.GetBreakpointTargets(pBreakpointSite, _
onlyEnabled)
public virtual IDTSBreakpointTargets100 GetBreakpointTargets(
IDTSBreakpointSite100 pBreakpointSite,
bool onlyEnabled
)
public:
virtual IDTSBreakpointTargets100^ GetBreakpointTargets(
[InAttribute] IDTSBreakpointSite100^ pBreakpointSite,
[InAttribute] bool onlyEnabled
)
abstract GetBreakpointTargets :
pBreakpointSite:IDTSBreakpointSite100 *
onlyEnabled:bool -> IDTSBreakpointTargets100
override GetBreakpointTargets :
pBreakpointSite:IDTSBreakpointSite100 *
onlyEnabled:bool -> IDTSBreakpointTargets100
public function GetBreakpointTargets(
pBreakpointSite : IDTSBreakpointSite100,
onlyEnabled : boolean
) : IDTSBreakpointTargets100
매개 변수
- pBreakpointSite
유형: Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSBreakpointSite100
An object implementing the IDTSBreakpointSite100 interface.
- onlyEnabled
유형: System.Boolean
true to indicate that only enabled breakpoints are included in the collection; false to indicate that all breakpoint targets are included in the collection.
반환 값
유형: Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSBreakpointTargets100
An IDTSBreakpointTargets100 collection.
구현
IDTSPackage100.GetBreakpointTargets(IDTSBreakpointSite100, Boolean)
주의
For more information, see Package.