From 62f9d7937e388ad7c85d89a446c8b8ed83813015 Mon Sep 17 00:00:00 2001 From: Simon G Date: Sun, 25 Apr 2021 19:49:14 +0200 Subject: [PATCH] - add getProcessById --- Lib.ProcessManaging/Interfaces/IProcessManager.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib.ProcessManaging/Interfaces/IProcessManager.cs b/Lib.ProcessManaging/Interfaces/IProcessManager.cs index 7d1c64b..59637ef 100644 --- a/Lib.ProcessManaging/Interfaces/IProcessManager.cs +++ b/Lib.ProcessManaging/Interfaces/IProcessManager.cs @@ -12,6 +12,7 @@ namespace Lib.ProcessManaging.Interfaces List? Processes { get; } void Initialize(); + IObservedProcess? GetProcessById(int id); event EventHandler? ProcessStarted; event EventHandler? ProcessExited;