다음을 통해 공유


Debugger.Breakpoints 속성

중단점의 컬렉션을 가져옵니다.

네임스페이스:  EnvDTE
어셈블리:  EnvDTE(EnvDTE.dll)

구문

‘선언
ReadOnly Property Breakpoints As Breakpoints
    Get
Breakpoints Breakpoints { get; }
property Breakpoints^ Breakpoints {
    Breakpoints^ get ();
}
abstract Breakpoints : Breakpoints
function get Breakpoints () : Breakpoints

속성 값

형식: EnvDTE.Breakpoints
Breakpoints 컬렉션입니다.

설명

Breakpoints는 디버거에 설정된 모든 중단점의 컬렉션을 반환합니다. 이 컬렉션은 보류 중인 모든 중단점의 목록을 나타냅니다. 보류 중단점 및 바인딩된 중단점에 대한 설명을 보려면 dbgBreakpointType 열거형을 참조하십시오.

예제

다음 예제에서는 Breakpoints 속성의 사용 방법을 보여 줍니다.

이 속성을 테스트하려면

  1. 대상 프로젝트를 열고 추가 기능을 실행합니다.
public static void Breakpoints(DTE dte)
{
    // Setup the debug Output window.
    Window w = (Window)dte.Windows.Item(EnvDTE.Constants.vsWindowKindOutput);
    w.Visible = true;
    OutputWindow ow = (OutputWindow)w.Object;
    OutputWindowPane owp = ow.OutputWindowPanes.Add("Breakpoints Property Test");
    owp.Activate();

    // dte is a reference to the DTE object passed to you by the
    // OnConnection method that you implement when you create an add-in.
    EnvDTE.Debugger debugger = (EnvDTE.Debugger)dte.Debugger;

    // Set breakpoints.
    debugger.Breakpoints.Add("","Target001.cs", 13, 1, "", 
        EnvDTE.dbgBreakpointConditionType.dbgBreakpointConditionTypeWhenTrue, 
        "C#","", 0, "", 0, EnvDTE.dbgHitCountType.dbgHitCountTypeNone);
    debugger.Breakpoints.Add("","Target001.cs", 14, 1, "", 
        EnvDTE.dbgBreakpointConditionType.dbgBreakpointConditionTypeWhenTrue, 
        "C#","", 0, "", 0, EnvDTE.dbgHitCountType.dbgHitCountTypeNone);            

    owp.OutputString("Number of breakpoints set: " + debugger.Breakpoints.Count + "\n");

    // List all breakpoints.
    foreach(EnvDTE.Breakpoint bp in debugger.Breakpoints)
    {
        owp.OutputString(bp.Name + "\n");
    }

}
Shared Sub Breakpoints(ByRef dte As EnvDTE.DTE)
    Dim str As String

    dte.Debugger.Breakpoints.Add("", "Target001.cs", 13, 1, "", _
                                 EnvDTE.dbgBreakpointConditionType.dbgBreakpointConditionTypeWhenTrue, _
                                 "C#", "", 0, "", 0, EnvDTE.dbgHitCountType.dbgHitCountTypeNone)
    dte.Debugger.Breakpoints.Add("", "Target001.cs", 15, 1, "", _
                                 EnvDTE.dbgBreakpointConditionType.dbgBreakpointConditionTypeWhenTrue, _
                                 "C#", "", 0, "", 0, EnvDTE.dbgHitCountType.dbgHitCountTypeNone)
    ' Setup debug Output window.
    Dim w As Window
    Dim ow As OutputWindow
    Dim owp As OutputWindowPane
    w = dte.Windows.Item(EnvDTE.Constants.vsWindowKindOutput)
    w.Visible = True
    ow = w.Object
    owp = ow.OutputWindowPanes.Add("Debugger Test")
    owp.Activate()
    Dim debugger As EnvDTE.Debugger = dte.Debugger
    For Each bp As EnvDTE.Breakpoint In debugger.Breakpoints
        str += bp.Name + vbCrLf
    Next
    owp.OutputString("Number of breakpoints set: " + debugger.Breakpoints.Count.ToString() + _
                     vbCrLf + str)
    MessageBox.Show("Number of breakpoints set: " + debugger.Breakpoints.Count.ToString() + _
                     vbCrLf + str, "Debugger Test")
End Sub

.NET Framework 보안

  • 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.

참고 항목

참조

Debugger 인터페이스

EnvDTE 네임스페이스

Breakpoint