C# Класс Mono.Debugger.Breakpoint

This is an abstract base class which is implemented by the user interface to hold the user's settings for a breakpoint.
Наследование: Event
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
CheckBreakpointHit ( Thread target, TargetAddress address ) : bool

This method is called each time the breakpoint is hit. It returns true if the target should remain stopped and false if the breakpoint is to be ignored.

The @target argument is *not* serializable and may not be used anywhere outside this handler.

Remove ( Thread target ) : void
ToString ( ) : string

Защищенные методы

Метод Описание
Breakpoint ( EventType type, int index, string name, ThreadGroup group ) : System
Breakpoint ( EventType type, string name, ThreadGroup group ) : System
GetEventType ( HardwareWatchType type ) : EventType
OnBreakpointBound ( ) : void
OnBreakpointError ( string message ) : void
OnResolveFailed ( ) : void

Приватные методы

Метод Описание
BreakpointHandler ( Inferior inferior, bool &remain_stopped ) : bool

Internal breakpoint handler.

The return value specifies whether we already dealt with the breakpoint; so you normally make it return `true' when overriding.

Resolve ( Thread target, StackFrame frame ) : BreakpointHandle

Описание методов

Breakpoint() защищенный Метод

protected Breakpoint ( EventType type, int index, string name, ThreadGroup group ) : System
type EventType
index int
name string
group ThreadGroup
Результат System

Breakpoint() защищенный Метод

protected Breakpoint ( EventType type, string name, ThreadGroup group ) : System
type EventType
name string
group ThreadGroup
Результат System

CheckBreakpointHit() публичный Метод

This method is called each time the breakpoint is hit. It returns true if the target should remain stopped and false if the breakpoint is to be ignored.
The @target argument is *not* serializable and may not be used anywhere outside this handler.
public CheckBreakpointHit ( Thread target, TargetAddress address ) : bool
target Thread
address TargetAddress
Результат bool

GetEventType() защищенный статический Метод

protected static GetEventType ( HardwareWatchType type ) : EventType
type HardwareWatchType
Результат EventType

OnBreakpointBound() защищенный Метод

protected OnBreakpointBound ( ) : void
Результат void

OnBreakpointError() защищенный Метод

protected OnBreakpointError ( string message ) : void
message string
Результат void

OnResolveFailed() защищенный Метод

protected OnResolveFailed ( ) : void
Результат void

Remove() публичный Метод

public Remove ( Thread target ) : void
target Thread
Результат void

ToString() публичный Метод

public ToString ( ) : string
Результат string