We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94e1160 commit 92af83cCopy full SHA for 92af83c
src/DotnetDumpMonitor/Models/ProcessDumpInfo.cs
@@ -1,25 +1,19 @@
1
-using DotnetDumpMonitor.Commons;
2
-using System;
+using System;
3
using System.Collections.Generic;
4
-using System.Diagnostics;
5
using System.Linq;
6
-using System.Runtime.InteropServices;
7
using System.Text;
8
using System.Threading.Tasks;
9
10
namespace DotnetDumpMonitor.Models
11
{
12
public class ProcessDumpInfo
13
14
-
15
public int ProcessID { get; }
16
public string Name { get; }
17
- public IntPtr Handle { get; }
18
19
public ProcessDumpInfo(int processID, string name)
20
21
ProcessID = processID;
22
- Handle = WindowsHelper.GetRootWindowOfProcess(processID);
23
Name = name;
24
}
25
0 commit comments