Debugger.Break 메서드
지정된 프로세스의 현재 상태를 분석할 수 있도록 프로세스의 실행을 일시 중지합니다.
네임스페이스: EnvDTE
어셈블리: EnvDTE(EnvDTE.dll)
구문
‘선언
Sub Break ( _
WaitForBreakMode As Boolean _
)
void Break(
bool WaitForBreakMode
)
void Break(
[InAttribute] bool WaitForBreakMode
)
abstract Break :
WaitForBreakMode:bool -> unit
function Break(
WaitForBreakMode : boolean
)
매개 변수
- WaitForBreakMode
형식: System.Boolean
디버거에서 중단 모드를 시작한 경우에만 돌아가려면 true로 설정하고,중단하고 바로 돌아가려면 false로 설정합니다.자세한 내용은 실행 중단을 참조하십시오.
설명
Break는 지정된 프로세스의 현재 상태를 분석할 수 있도록 프로세스의 실행을 일시 중지합니다.
예제
다음 예제에서는 Break 메서드를 사용하는 방법을 보여 줍니다.
이 메서드를 테스트하려면
대상 응용 프로그램 코드에 무한 루프를 사용합니다.
디버그 모드에서 대상 응용 프로그램을 실행합니다.
대상이 실행되고 있는 동안에는 변수의 값을 검사할 수 없습니다.
추가 기능을 실행합니다.
변수의 값을 검사합니다.
public static void Break(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("Break Method Test");
owp.Activate();
dte.Debugger.Break(false);
owp.OutputString("The process is paused. Examine the values of variables.");
}
Shared Sub Break(ByRef dte As EnvDTE.DTE)
dte.Debugger.Break(False)
MessageBox.Show("The process is paused. Examine the values of variables.", _
"Debugger Test - Break Test")
End Sub
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.