mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
598 B
26 lines
598 B
// Copyright (c) 2011 AlphaSierraPapa for the SharpDevelop Team |
|
// This code is distributed under MIT license (for details please see \doc\license.txt) |
|
|
|
using System; |
|
using System.Diagnostics; |
|
using System.IO; |
|
using System.Linq; |
|
using System.Windows.Controls; |
|
|
|
namespace ICSharpCode.ILSpy.Debugger.Models |
|
{ |
|
sealed class RunningProcess |
|
{ |
|
public int ProcessId { get; set; } |
|
|
|
public string WindowTitle { get; set; } |
|
|
|
public string ProcessName { get; set; } |
|
|
|
public string FileName { get; set; } |
|
|
|
public string Managed { get; set; } |
|
|
|
public Process Process { get; set; } |
|
} |
|
}
|
|
|