/
n-dimens
/
pascalabcnet
Обзор
Документация
Войти
/
n-dimens
/
pascalabcnet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
VisualPascalABCNETLinux/MonoDebugging/Client/TargetEventArgs.cs
61 строка
846 B
Ivan Bondarev
Mono.Debugging
10 апр 2023, 22:04
10 апр 2023, 22:04
f2faa95
Код
Авторство
О чём код?
using System; using Mono.Debugging.Backend; namespace Mono.Debugging.Client { [Serializable] public class TargetEventArgs: EventArgs { TargetEventType type; Backtrace backtrace; ProcessInfo process; ThreadInfo thread; public TargetEventArgs (TargetEventType type) { this.type = type; } public TargetEventType Type { get { return type; } set { type = value; } } public Backtrace Backtrace { get { return backtrace; } set { backtrace = value; } } public ThreadInfo Thread { get { return thread; } set { thread = value; } } public ProcessInfo Process { get { return process; } set { process = value; } } public bool IsStopEvent { get; set; } public BreakEvent BreakEvent { get; set; } public int? ExitCode { get; set; } } }