本文整理匯總了C#中Mono.Debugging.Client.Breakpoint.GetStatus方法的典型用法代碼示例。如果您正苦於以下問題:C# Breakpoint.GetStatus方法的具體用法?C# Breakpoint.GetStatus怎麽用?C# Breakpoint.GetStatus使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Mono.Debugging.Client.Breakpoint
的用法示例。
在下文中一共展示了Breakpoint.GetStatus方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: AddBreakpoint
void AddBreakpoint (Breakpoint bp)
{
if (DebuggingService.PinnedWatches.IsWatcherBreakpoint (bp))
return;
var textEditor = widget.TextEditor;
if (textEditor == null)
return;
var document = textEditor.Document;
if (document == null)
return;
FilePath fp = Name;
if (fp.FullPath == bp.FileName) {
if (bp.Line <= 0 || bp.Line > textEditor.Document.LineCount) {
LoggingService.LogWarning ("Invalid breakpoint :" + bp + " in line " + bp.Line);
return;
}
DocumentLine line = document.GetLine (bp.Line);
var status = bp.GetStatus (DebuggingService.DebuggerSession);
bool tracepoint = (bp.HitAction & HitAction.Break) == HitAction.None;
if (line == null)
return;
//TODO: 1. When not in debug mode use Microsoft.CodeAnalysis.CSharp.EditAndContinue.BreakpointSpans.TryGetBreakpointSpan
//TODO: 2. When in debug mode extend Breakpoint class to have endLine and endColumn set if .mdb/.pdb has endLine/endColumn
var offset = line.Offset;
var lenght = line.Length;
DebugMarkerPair marker;
if (!bp.Enabled) {
marker = new DisabledBreakpointTextMarker (textEditor, offset, lenght, tracepoint);
} else if (status == BreakEventStatus.Bound || status == BreakEventStatus.Disconnected) {
marker = new BreakpointTextMarker (textEditor, offset, lenght, tracepoint);
} else {
marker = new InvalidBreakpointTextMarker (textEditor, offset, lenght, tracepoint);
}
textEditor.QueueDraw ();
breakpointSegments.Add (marker);
marker.AddTo (document, line);
}
}
示例2: AddBreakpoint
void AddBreakpoint (Breakpoint bp)
{
if (DebuggingService.PinnedWatches.IsWatcherBreakpoint (bp))
return;
FilePath fp = Name;
if (fp.FullPath == bp.FileName) {
DocumentLine line = widget.TextEditor.Document.GetLine (bp.Line);
var status = bp.GetStatus (DebuggingService.DebuggerSession);
if (line == null)
return;
if (!bp.Enabled) {
if (bp.HitAction == HitAction.Break)
widget.TextEditor.Document.AddMarker (line, new DisabledBreakpointTextMarker (widget.TextEditor, false));
else
widget.TextEditor.Document.AddMarker (line, new DisabledBreakpointTextMarker (widget.TextEditor, true));
} else if (status == BreakEventStatus.Bound || status == BreakEventStatus.Disconnected) {
if (bp.HitAction == HitAction.Break)
widget.TextEditor.Document.AddMarker (line, new BreakpointTextMarker (widget.TextEditor, false));
else
widget.TextEditor.Document.AddMarker (line, new BreakpointTextMarker (widget.TextEditor, true));
} else
widget.TextEditor.Document.AddMarker (line, new InvalidBreakpointTextMarker (widget.TextEditor));
widget.TextEditor.QueueDraw ();
breakpointSegments.Add (line);
}
}
示例3: AddBreakpoint
void AddBreakpoint (Breakpoint bp)
{
if (DebuggingService.PinnedWatches.IsWatcherBreakpoint (bp))
return;
var textEditor = widget.TextEditor;
if (textEditor == null)
return;
var document = textEditor.Document;
if (document == null)
return;
FilePath fp = Name;
if (fp.FullPath == bp.FileName) {
if (bp.Line <= 0 || bp.Line > textEditor.Document.LineCount) {
LoggingService.LogWarning ("Invalid breakpoint :" + bp +" in line " + bp.Line);
return;
}
DocumentLine line = document.GetLine (bp.Line);
var status = bp.GetStatus (DebuggingService.DebuggerSession);
bool tracepoint = (bp.HitAction & HitAction.Break) == HitAction.None;
if (line == null)
return;
if (!bp.Enabled) {
document.AddMarker (line, new DisabledBreakpointTextMarker (textEditor, tracepoint));
} else if (status == BreakEventStatus.Bound || status == BreakEventStatus.Disconnected) {
document.AddMarker (line, new BreakpointTextMarker (textEditor, tracepoint));
} else {
document.AddMarker (line, new InvalidBreakpointTextMarker (textEditor, tracepoint));
}
textEditor.QueueDraw ();
breakpointSegments.Add (line);
}
}