diff options
| author | Luke <luke.pulverenti@gmail.com> | 2015-03-25 00:59:49 -0400 |
|---|---|---|
| committer | Luke <luke.pulverenti@gmail.com> | 2015-03-25 00:59:49 -0400 |
| commit | aa079120059699f4778d80f55e68883d75d26b3a (patch) | |
| tree | 90ef957908152d11333fde96b95d609309560bb2 /MediaBrowser.Controller/Diagnostics/IProcessManager.cs | |
| parent | 9926be0d9de688c04065c916e44ada4177b38a80 (diff) | |
| parent | 29b6ee4b6f336f08807a7ed7bdb22a1ef68269c0 (diff) | |
Merge pull request #1051 from MediaBrowser/dev
3.0.5557.20000 Beta
Diffstat (limited to 'MediaBrowser.Controller/Diagnostics/IProcessManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Diagnostics/IProcessManager.cs | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/MediaBrowser.Controller/Diagnostics/IProcessManager.cs b/MediaBrowser.Controller/Diagnostics/IProcessManager.cs deleted file mode 100644 index 2e076bd88..000000000 --- a/MediaBrowser.Controller/Diagnostics/IProcessManager.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System.Diagnostics; - -namespace MediaBrowser.Controller.Diagnostics -{ - /// <summary> - /// Interface IProcessManager - /// </summary> - public interface IProcessManager - { - /// <summary> - /// Gets a value indicating whether [supports suspension]. - /// </summary> - /// <value><c>true</c> if [supports suspension]; otherwise, <c>false</c>.</value> - bool SupportsSuspension { get; } - - /// <summary> - /// Suspends the process. - /// </summary> - /// <param name="process">The process.</param> - void SuspendProcess(Process process); - - /// <summary> - /// Resumes the process. - /// </summary> - /// <param name="process">The process.</param> - void ResumeProcess(Process process); - } -} |
